diff options
author | B. Watson <yalhcru@gmail.com> | 2017-03-20 16:34:12 -0400 |
---|---|---|
committer | David Spencer <idlemoor@slackbuilds.org> | 2017-03-25 13:27:28 +0000 |
commit | 7ddb93e255114bb1274c327afe17615a7f27132e (patch) | |
tree | ee4605e6cf7a4f5f4814ad1f9d6c26ef80eadc72 /games/KAdventure/KAdventure.SlackBuild | |
parent | 1e1a4249d231d955e97d3bfe56c7d8b94e008ccb (diff) |
games/KAdventure: Make .desktop validate, i486=>i586.
Signed-off-by: B. Watson <yalhcru@gmail.com>
Signed-off-by: David Spencer <idlemoor@slackbuilds.org>
Diffstat (limited to 'games/KAdventure/KAdventure.SlackBuild')
-rw-r--r-- | games/KAdventure/KAdventure.SlackBuild | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/games/KAdventure/KAdventure.SlackBuild b/games/KAdventure/KAdventure.SlackBuild index a17d12542b2eb..0adfb3ccbb5a6 100644 --- a/games/KAdventure/KAdventure.SlackBuild +++ b/games/KAdventure/KAdventure.SlackBuild @@ -29,7 +29,7 @@ TAG=${TAG:-_SBo} if [ -z "$ARCH" ]; then case "$( uname -m )" in - i?86) ARCH=i486 ;; + i?86) ARCH=i586 ;; arm*) ARCH=arm ;; *) ARCH=$( uname -m ) ;; esac @@ -40,8 +40,8 @@ TMP=${TMP:-/tmp/SBo} PKG=$TMP/package-$PRGNAM OUTPUT=${OUTPUT:-/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" @@ -92,7 +92,6 @@ cp $CWD/$PRGNAM.desktop $PKG/usr/share/applications/$PRGNAM.desktop find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \ | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true -# Copy program documentation into the package mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION cp README.md $PKG/usr/doc/$PRGNAM-$VERSION/ cd .. |