diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:01:12 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:01:12 -0400 |
commit | 824e9746b44ef346a1ce9e0a671dc0851cb86abf (patch) | |
tree | 4e37f6abd2f4a75b2040ef0bd6f0700c5c878d57 /desktop | |
parent | 2fca5b242dc9cfdac7953e9aa0377e8afce7f995 (diff) | |
download | slackbuilds-824e9746b44ef346a1ce9e0a671dc0851cb86abf.tar.gz slackbuilds-824e9746b44ef346a1ce9e0a671dc0851cb86abf.tar.xz |
desktop/lxpanel: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'desktop')
-rw-r--r-- | desktop/lxpanel/lxpanel.SlackBuild | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/desktop/lxpanel/lxpanel.SlackBuild b/desktop/lxpanel/lxpanel.SlackBuild index 235d3179969..a0bb73a30dd 100644 --- a/desktop/lxpanel/lxpanel.SlackBuild +++ b/desktop/lxpanel/lxpanel.SlackBuild @@ -23,10 +23,19 @@ PRGNAM=lxpanel VERSION=0.3.8.1 -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 @@ -43,6 +52,9 @@ elif [ "$ARCH" = "i686" ]; then elif [ "$ARCH" = "x86_64" ]; then SLKCFLAGS="-O2 -fPIC" LIBDIRSUFFIX="64" +else + SLKCFLAGS="-O2" + LIBDIRSUFFIX="" fi set -e |