diff options
Diffstat (limited to 'rubygem-template.SlackBuild')
-rw-r--r-- | rubygem-template.SlackBuild | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/rubygem-template.SlackBuild b/rubygem-template.SlackBuild index 68a424e..154ff2b 100644 --- a/rubygem-template.SlackBuild +++ b/rubygem-template.SlackBuild @@ -58,7 +58,7 @@ SRCNAM=appname # replace with name of gem # Automatically determine the architecture we're building on: if [ -z "$ARCH" ]; then case "$( uname -m )" in - i?86) ARCH=i486 ;; + i?86) ARCH=i586 ;; arm*) ARCH=arm ;; # Unless $ARCH is already set, use uname -m for all other archs: *) ARCH=$( uname -m ) ;; @@ -70,8 +70,8 @@ TMP=${TMP:-/tmp/SBo} # For consistency's sake, use this PKG=$TMP/package-$PRGNAM OUTPUT=${OUTPUT:-/tmp} # Drop the package in /tmp -if [ "$ARCH" = "i486" ]; then - SLKCFLAGS="-O2 -march=i486 -mtune=i686" +if [ "$ARCH" = "i586" ]; then + SLKCFLAGS="-O2 -march=i586 -mtune=i686" LIBDIRSUFFIX="" elif [ "$ARCH" = "i686" ]; then SLKCFLAGS="-O2 -march=i686 -mtune=i686" |