diff options
author | B. Watson <yalhcru@gmail.com> | 2022-02-21 12:17:53 -0500 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2022-02-21 14:34:28 -0600 |
commit | 1f827df96eeba458930b2136105ba629ae9f97e1 (patch) | |
tree | 87f7d02b6f460d0e762a80cc43520342786def53 /games | |
parent | 5aadeb27ca33f5ddba37f57b0ca9a321ce93bcad (diff) |
games/rezerwar: Fix 15.0 build.
Signed-off-by: B. Watson <yalhcru@gmail.com>
Diffstat (limited to 'games')
-rw-r--r-- | games/rezerwar/rezerwar.SlackBuild | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/games/rezerwar/rezerwar.SlackBuild b/games/rezerwar/rezerwar.SlackBuild index cd4643436240..aa9b3c57b0e8 100644 --- a/games/rezerwar/rezerwar.SlackBuild +++ b/games/rezerwar/rezerwar.SlackBuild @@ -4,6 +4,8 @@ # Written by Larry Hajali <larryhaja[at]gmail[dot]com> +# 20220221 bkw: Modified by SlackBuilds.org: fix build on 15.0. + cd $(dirname $0) ; CWD=$(pwd) PRGNAM=rezerwar @@ -12,9 +14,6 @@ BUILD=${BUILD:-1} TAG=${TAG:-_SBo} PKGTYPE=${PKGTYPE:-tgz} -# If the variable PRINT_PACKAGE_NAME is set, then this script will report what -# the name of the created package would be, and then exit. This information -# could be useful to other scripts. if [ ! -z "${PRINT_PACKAGE_NAME}" ]; then echo "$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE" exit 0 @@ -51,15 +50,15 @@ cd $PRGNAM-$VERSION chown -R root:root . find -L . \ \( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 -o -perm 511 \) \ - -exec chmod 755 {} \; -o \ + -exec chmod 755 {} \+ -o \ \( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \ - -exec chmod 644 {} \; + -exec chmod 644 {} \+ SDLCONFIG="sdl-config" \ TARGET_BIN="/usr/games" \ TARGET_DOC="/usr/doc/$PRGNAM-$VERSION" \ TARGET_DATA="/usr/share/$PRGNAM" \ -MK_EXTRACFLAGS="$SLKCFLAGS" \ +MK_EXTRACFLAGS="$SLKCFLAGS -fcommon" \ OS="Linux" ./configure make |