diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:16:23 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:16:23 -0400 |
commit | d7e1c4058c00ff5a93868a91874be79329a17122 (patch) | |
tree | c57c6552184a755c748b60d589064a504f026b3f /system/pax | |
parent | 734a4623d53cab164c9dcd63d19da3593b87bda1 (diff) | |
download | slackbuilds-d7e1c4058c00ff5a93868a91874be79329a17122.tar.gz |
system/pax: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'system/pax')
-rw-r--r-- | system/pax/pax.SlackBuild | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/system/pax/pax.SlackBuild b/system/pax/pax.SlackBuild index 4e05921b50..af3a8501d9 100644 --- a/system/pax/pax.SlackBuild +++ b/system/pax/pax.SlackBuild @@ -21,10 +21,19 @@ PRGNAM=pax VERSION=${VERSION:-3.4} -ARCH=${ARCH:-i486} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} +# Automatically determine the architecture we're building on: +if [ -z "$ARCH" ]; then + case "$( uname -m )" in + i?86) ARCH=i486 ;; + arm*) ARCH=arm ;; + # Unless $ARCH is already set, use uname -m for all other archs: + *) ARCH=$( uname -m ) ;; + esac +fi + CWD=$(pwd) TMP=${TMP:-/tmp/SBo} PKG=$TMP/package-$PRGNAM @@ -39,6 +48,9 @@ elif [ "$ARCH" = "i686" ]; then elif [ "$ARCH" = "x86_64" ]; then SLKCFLAGS="-O2 -fPIC" LIBDIRSUFFIX="64" +else + SLKCFLAGS="-O2" + LIBDIRSUFFIX="" fi set -e |