From a0bb1fff462e1dc68d138b30ed7108be41e9ec0a Mon Sep 17 00:00:00 2001 From: Mario Fetka Date: Sat, 6 Sep 2025 22:05:16 +0200 Subject: [PATCH] correct paths --- buildpkg.tools | 21 +++++++++++---------- 1 file changed, 11 insertions(+), 10 deletions(-) diff --git a/buildpkg.tools b/buildpkg.tools index 5071924..5c327f1 100644 --- a/buildpkg.tools +++ b/buildpkg.tools @@ -4,23 +4,23 @@ __bash=/usr/dbpware/bin/bash __strip=/usr/bin/strip __uname=/usr/bin/uname -__tar=/usr/dbpware/bin/tar # GNU tar v1.14 or better please! +__tar=/usr/dbpware/bin/gtar # GNU tar v1.14 or better please! __vtar=/usr/bin/tar # vendor supplied tar __bzip2=/usr/dbpware/bin/bzip2 __gzip=/usr/dbpware/bin/gzip __xz=/usr/dbpware/bin/xz __lzip=/usr/dbpware/bin/lzip -__patch=/usr/dbpware/bin/patch # GNU patch 2.5 or better please! +__patch=/usr/dbpware/bin/gpatch # GNU patch 2.5 or better please! __rm=/usr/bin/rm __rmdir=/usr/bin/rmdir __mkdir=/usr/bin/mkdir -__make=/usr/dbpware/bin/make # GNU make 3.80 or better please! +__make=/usr/dbpware/bin/gmake # GNU make 3.80 or better please! __find=/usr/bin/find # vendor supplied find, GNU find will require changes to the script __xargs=/usr/bin/xargs __cat=/usr/bin/cat __awk=/usr/bin/nawk # This must be nawk or GNU awk - plain /usr/bin/awk will *not* work __sed=/usr/bin/sed -__gsed=/usr/dbpware/bin/sed +__gsed=/usr/dbpware/bin/gsed __sort=/usr/bin/sort __cut=/usr/bin/cut __ls=/usr/bin/ls @@ -28,11 +28,11 @@ __expr=/usr/bin/expr __mv=/usr/bin/mv __mkdir=/usr/bin/mkdir __cp=/usr/bin/cp -__gcp=/usr/dbpware/bin/cp +__gcp=/usr/dbpware/bin/gcp __tee=/bin/tee __grep=/bin/grep __egrep=/bin/egrep -__ggrep=/usr/dbpware/bin/grep # GNU grep +__ggrep=/usr/dbpware/bin/ggrep # GNU grep __uniq=/bin/uniq __basename=/bin/basename __dirname=/bin/dirname @@ -40,17 +40,18 @@ __tr=/bin/tr __file=/usr/bin/file # Used by do_strip() __ln=/usr/bin/ln __ln_s="/usr/bin/ln -s" -__install=/usr/dbpware/bin/install # BSD compatible install - usually GNU install +__install=/usr/dbpware/bin/ginstall # BSD compatible install - usually GNU install __compress=/usr/bsd/compress __pack=/usr/bin/pack -__sha1sum=/usr/dbpware/bin/sha1sum +__sha1sum=/usr/dbpware/bin/gsha1sum __unzip=/usr/dbpware/bin/unzip __head=/usr/bin/head # Must support -n __perl=/usr/dbpware/bin/perl -__readlink=/usr/dbpware/bin/readlink +__readlink=/usr/dbpware/bin/greadlink __ldd=/usr/bin/ldd __curl=/usr/dbpware/bin/curl # Groff stuff for manpages -__nroff=/usr/dbpware/bin/nroff +#__nroff=/usr/dbpware/bin/nroff +__nroff=/usr/bin/nroff NROFFOPTS="-c -mandoc -Tascii -t"