diff options
Diffstat (limited to 'source/a/pkgtools')
-rwxr-xr-x | source/a/pkgtools/pkgtools.SlackBuild | 2 | ||||
-rw-r--r-- | source/a/pkgtools/scripts/makepkg | 4 |
2 files changed, 2 insertions, 4 deletions
diff --git a/source/a/pkgtools/pkgtools.SlackBuild b/source/a/pkgtools/pkgtools.SlackBuild index 7c8dc9c0..773e3d6c 100755 --- a/source/a/pkgtools/pkgtools.SlackBuild +++ b/source/a/pkgtools/pkgtools.SlackBuild @@ -30,7 +30,7 @@ PKGNAM=pkgtools # *** UPDATE THESE WITH EACH BUILD: VERSION=15.0 ARCH=${ARCH:-noarch} -BUILD=${BUILD:-24} +BUILD=${BUILD:-25} # If the variable PRINT_PACKAGE_NAME is set, then this script will report what # the name of the created package would be, and then exit. This information diff --git a/source/a/pkgtools/scripts/makepkg b/source/a/pkgtools/scripts/makepkg index 63ab83cb..d6b2e186 100644 --- a/source/a/pkgtools/scripts/makepkg +++ b/source/a/pkgtools/scripts/makepkg @@ -420,9 +420,7 @@ if [ ! $ERRCODE = 0 ]; then fi # Warn of zero-length files: -find . -type f -size 0c | while read file ; do - echo "WARNING: zero length file $(echo $file | cut -b3-)" -done +find . -type f -size 0c | cut -b3- | sed "s/^/WARNING: zero length file /g" # Warn of corrupt or empty gzip files: find . -type f -name '*.gz' | while read file ; do |