summaryrefslogtreecommitdiffstats
path: root/yasm
diff options
context:
space:
mode:
author Eric Hameleers <alien@slackware.com>2008-12-09 18:35:16 +0000
committer Eric Hameleers <alien@slackware.com>2008-12-09 18:35:16 +0000
commit71c3428b94ace8dfdb51c8411d5796c5eee2a490 (patch)
tree1097447bd636414a6fc6561c0cfe0b5d0a9a3679 /yasm
parent8adf3f71abca49c098e8e4587e440d4518924697 (diff)
downloadasb-71c3428b94ace8dfdb51c8411d5796c5eee2a490.tar.gz
asb-71c3428b94ace8dfdb51c8411d5796c5eee2a490.tar.xz
Updated to 0.7.2
Diffstat (limited to 'yasm')
-rwxr-xr-xyasm/build/yasm.SlackBuild12
1 files changed, 5 insertions, 7 deletions
diff --git a/yasm/build/yasm.SlackBuild b/yasm/build/yasm.SlackBuild
index 766e2311..d63167bf 100755
--- a/yasm/build/yasm.SlackBuild
+++ b/yasm/build/yasm.SlackBuild
@@ -32,6 +32,8 @@
# Changelog:
# 0.7.1-1: 16/Jun/2008 by Eric Hameleers <alien@slackware.com>
# * Initial build.
+# 0.7.2-1: 08/dec/2008 by Eric Hameleers <alien@slackware.com>
+# * Update.
#
# Run 'sh yasm.SlackBuild --cleanup' to build a Slackware package.
# The package (.tgz) plus descriptive .txt file are created in /tmp .
@@ -39,10 +41,8 @@
#
# -----------------------------------------------------------------------------
-# Set initial variables:
-
PRGNAM=yasm
-VERSION=${VERSION:-0.7.1}
+VERSION=${VERSION:-0.7.2}
ARCH=${ARCH:-i486}
BUILD=${BUILD:-1}
TAG=${TAG:-alien}
@@ -196,10 +196,8 @@ if [ -d $PKG/usr/man ]; then
fi
# Strip binaries:
-cd $PKG
-find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true
-find . | xargs file | grep "shared object" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true
-cd -
+find $PKG | xargs file | grep -e "executable" -e "shared object" \
+ | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null
# Add a package description:
mkdir -p $PKG/install