diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:09:20 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:09:20 -0400 |
commit | 18e720a833a4a031a1ec7c1756146e11e8185374 (patch) | |
tree | 691985af301055ee5ea65dd0e9e84954589b95bd /libraries/perl-Config-IniFiles | |
parent | f0cee28f3760622c4f921d0bbdd9ad9ce8cdf1f4 (diff) | |
download | slackbuilds-18e720a833a4a031a1ec7c1756146e11e8185374.tar.gz |
libraries/perl-Config-IniFiles: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'libraries/perl-Config-IniFiles')
-rwxr-xr-x | libraries/perl-Config-IniFiles/perl-Config-IniFiles.SlackBuild | 15 |
1 files changed, 12 insertions, 3 deletions
diff --git a/libraries/perl-Config-IniFiles/perl-Config-IniFiles.SlackBuild b/libraries/perl-Config-IniFiles/perl-Config-IniFiles.SlackBuild index e1e8a7db0d..22e8473d0e 100755 --- a/libraries/perl-Config-IniFiles/perl-Config-IniFiles.SlackBuild +++ b/libraries/perl-Config-IniFiles/perl-Config-IniFiles.SlackBuild @@ -27,14 +27,23 @@ SRCNAM=Config-IniFiles PRGNAM=perl-Config-IniFiles VERSION=2.57 -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 OUTPUT=${OUTPUT:-/tmp} -CWD=$(pwd) set -e |