diff options
author | Matteo Bernardini <ponce@slackbuilds.org> | 2015-11-03 17:32:42 +0100 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2016-01-17 09:40:16 +0700 |
commit | bb6e79b8304f6d75a3e58c5297d1e032746858f0 (patch) | |
tree | 2565745e54dffd30b5fcd5295751fcd0db2f34e7 /games | |
parent | 9f8558a70cb5f44f3424cd5c19fa4b8c668725c5 (diff) |
games/frozen-bubble: Strip away Werror to fix build.
Signed-off-by: Matteo Bernardini <ponce@slackbuilds.org>
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'games')
-rw-r--r-- | games/frozen-bubble/frozen-bubble.SlackBuild | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/games/frozen-bubble/frozen-bubble.SlackBuild b/games/frozen-bubble/frozen-bubble.SlackBuild index 288ae83dc914..50cbcd8f9ef0 100644 --- a/games/frozen-bubble/frozen-bubble.SlackBuild +++ b/games/frozen-bubble/frozen-bubble.SlackBuild @@ -24,7 +24,7 @@ PRGNAM=frozen-bubble VERSION=905bf71 -BUILD=${BUILD:-1} +BUILD=${BUILD:-2} TAG=${TAG:-_SBo} if [ -z "$ARCH" ]; then @@ -69,6 +69,9 @@ find -L . \ \( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \ -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \; +# Werror breaks build on current +sed -i "s|\ -Werror||" inc/My/Builder.pm + perl Build.PL \ prefix=/usr \ installdirs=vendor \ |