diff options
author | Patrick J Volkerding <volkerdi@slackware.com> | 2018-10-24 21:22:04 +0000 |
---|---|---|
committer | Eric Hameleers <alien@slackware.com> | 2018-10-25 09:00:34 +0200 |
commit | b80b3b22ebdcaa6151d82e43a56144b97a90d4fe (patch) | |
tree | ce97b7ad35e97c80766c10c006770c429d67597f /source/d/strace/strace.SlackBuild | |
parent | 4a2513fad6f2f6b57cb7009620ab2e9ddf13ab9d (diff) | |
download | current-b80b3b22ebdcaa6151d82e43a56144b97a90d4fe.tar.gz |
Wed Oct 24 21:22:04 UTC 201820181024212204
d/strace-20181024_43700247-x86_64-1.txz: Upgraded.
l/alsa-plugins-1.1.7-x86_64-4.txz: Rebuilt.
Applied upstream fix for double free. Thanks to Jean-Philippe Guillemin.
n/httpd-2.4.37-x86_64-1.txz: Upgraded.
n/mcabber-1.1.0-x86_64-1.txz: Upgraded.
x/libepoxy-1.5.3-x86_64-1.txz: Upgraded.
xap/pan-0.145-x86_64-1.txz: Upgraded.
extra/pure-alsa-system/alsa-plugins-1.1.7-x86_64-4_alsa.txz: Rebuilt.
Applied upstream fix for double free. Thanks to Jean-Philippe Guillemin.
Diffstat (limited to 'source/d/strace/strace.SlackBuild')
-rwxr-xr-x | source/d/strace/strace.SlackBuild | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/source/d/strace/strace.SlackBuild b/source/d/strace/strace.SlackBuild index bc5309dc..d3d86368 100755 --- a/source/d/strace/strace.SlackBuild +++ b/source/d/strace/strace.SlackBuild @@ -23,7 +23,7 @@ cd $(dirname $0) ; CWD=$(pwd) PKGNAM=strace -VERSION=${VERSION:-$(echo $PKGNAM-*.tar.xz | rev | cut -f 3- -d . | cut -f 1 -d - | rev)} +VERSION=${VERSION:-$(echo $PKGNAM-*.tar.?z | rev | cut -f 3- -d . | cut -f 1 -d - | rev)} BUILD=${BUILD:-1} # Automatically determine the architecture we're building on: @@ -64,7 +64,7 @@ mkdir -p $TMP $PKG cd $TMP rm -rf strace-$VERSION -tar xvf $CWD/strace-$VERSION.tar.xz || exit 1 +tar xvf $CWD/strace-$VERSION.tar.?z || exit 1 cd strace-$VERSION || exit 1 chown -R root:root . find . \ @@ -73,6 +73,11 @@ find . \ \( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \ -exec chmod 644 {} \; +if [ ! -x configure ]; then + ./bootstrap + autoreconf -vif +fi + CFLAGS="$SLKCFLAGS" \ ./configure \ --prefix=/usr \ |