summaryrefslogtreecommitdiffstats
path: root/slackware64-current/source/a/pkgtools
diff options
context:
space:
mode:
authorAdrien Nader <adrien@notk.org>2011-04-11 11:15:34 +0200
committerAdrien Nader <adrien@notk.org>2011-04-11 11:15:34 +0200
commit68ace4ecda2ae0f8b067363a235b237ab1f560b4 (patch)
tree2eaec73220203d10ac1c74c554a6a939084bcf8d /slackware64-current/source/a/pkgtools
parent5fc43a7cb58766c51a471376524854348520c45d (diff)
Mon Apr 11 07:01:40 UTC 2011
a/apmd-3.2.2-x86_64-3.txz: Rebuilt. Removed obsolete /usr/bin/on_ac_power script. a/pkgtools-13.37-noarch-7.tgz: Rebuilt. Fixed installpkg where the pathname contains whitespace. Thanks to Corrado Franco. a/shadow-4.1.4.3-x86_64-2.txz: Rebuilt. Corrected a packaging error where incorrect permissions on /usr/sbin/lastlog and /usr/sbin/faillog allow any user to set login failure limits on any other user (including root), potentially leading to a denial of service. Thanks to pyllyukko for discovering and reporting this vulnerability. (* Security fix *) a/sysvinit-scripts-1.2-noarch-41.txz: Rebuilt. In rc.6 and rc.K, use umount -l when unmounting remote filesystems. Thanks to crocket. l/gdk-pixbuf2-2.23.3-x86_64-1.txz: Upgraded. l/seamonkey-solibs-2.1b3-x86_64-2.txz: Rebuilt. l/v4l-utils-0.8.3-x86_64-2.txz: Rebuilt. Moved 70-infrared.rules to /lib/udev/rules.d/. Thanks to Robby Workman. xap/seamonkey-2.1b3-x86_64-2.txz: Rebuilt. Rebuilt from fixed upstream sources to install into the correct moz_libdir. isolinux/initrd.img: Rebuilt. Allow adjusting user filesystem access level for FAT partitions. Thanks to Andrzej Szelachowski. usb-and-pxe-installers/usbboot.img: Rebuilt. Allow adjusting user filesystem access level for FAT partitions. Thanks to Andrzej Szelachowski. testing/packages/mesa-7.10.2-x86_64-1.txz: Upgraded.
Diffstat (limited to 'slackware64-current/source/a/pkgtools')
-rwxr-xr-xslackware64-current/source/a/pkgtools/pkgtools.SlackBuild2
-rw-r--r--slackware64-current/source/a/pkgtools/scripts/installpkg2
2 files changed, 2 insertions, 2 deletions
diff --git a/slackware64-current/source/a/pkgtools/pkgtools.SlackBuild b/slackware64-current/source/a/pkgtools/pkgtools.SlackBuild
index 52abfbc3d..6d0a1b7a0 100755
--- a/slackware64-current/source/a/pkgtools/pkgtools.SlackBuild
+++ b/slackware64-current/source/a/pkgtools/pkgtools.SlackBuild
@@ -29,7 +29,7 @@ PKG=$TMP/package-pkgtools
# *** UPDATE THESE WITH EACH BUILD:
VERSION=13.37
ARCH=${ARCH:-noarch}
-BUILD=6
+BUILD=7
if [ ! -d $TMP ]; then
mkdir -p $TMP # location to build the source
diff --git a/slackware64-current/source/a/pkgtools/scripts/installpkg b/slackware64-current/source/a/pkgtools/scripts/installpkg
index 01a217b7c..1d58fe666 100644
--- a/slackware64-current/source/a/pkgtools/scripts/installpkg
+++ b/slackware64-current/source/a/pkgtools/scripts/installpkg
@@ -391,7 +391,7 @@ for package in $* ; do
# Figure out some package information, like the compressed and uncompressed
# sizes, and where to find the package description:
- COMPRESSED="$(/bin/du -sh $(readlink -f $package) | cut -f 1)"
+ COMPRESSED="$(/bin/du -sh "$(readlink -f $package)" | cut -f 1)"
DESCRIPTION=""
# First check for .txt file next to the package, since this is faster:
if grep "^$packagebase:" "$packagedir/$shortname.txt" 1> /dev/null 2> /dev/null ; then