summaryrefslogtreecommitdiffstats
path: root/games
diff options
context:
space:
mode:
author Willy Sudiarto Raharjo2016-02-01 20:37:29 +0100
committer Willy Sudiarto Raharjo2016-02-05 01:02:20 +0100
commit1774bc497f784ad60017d678be0c30b1d8a71244 (patch)
treea04f754dac4cf971ae858f79b2b1118b5596fe18 /games
parente6de4aba45f1f730dbfa868df309bc7e4f109827 (diff)
downloadslackbuilds-1774bc497f784ad60017d678be0c30b1d8a71244.tar.gz
games/openlierox: Disable Breakpad to fix build failure.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'games')
-rw-r--r--games/openlierox/openlierox.SlackBuild9
1 files changed, 1 insertions, 8 deletions
diff --git a/games/openlierox/openlierox.SlackBuild b/games/openlierox/openlierox.SlackBuild
index 0fd7f26360..33ab470ece 100644
--- a/games/openlierox/openlierox.SlackBuild
+++ b/games/openlierox/openlierox.SlackBuild
@@ -73,20 +73,13 @@ find -L . \
# curl/types.h removed because not supported from new CURL versions
patch -p1 < $CWD/http_curl.patch
-# Google Breakpad is not supported on Linux 64bit
-if [ "$ARCH" = "x86_64" ]; then
- BREAKPAD=${BREAKPAD:-off}
-else
- BREAKPAD=${BREAKPAD:-on}
-fi
-
mkdir -p build
cd build
cmake . \
-DCMAKE_C_FLAGS:STRING="$SLKCFLAGS" \
-DCMAKE_CXX_FLAGS:STRING="$SLKCFLAGS" \
-DCMAKE_INSTALL_PREFIX=/usr \
- -DBREAKPAD=$BREAKPAD \
+ -DBREAKPAD=off \
-DCMAKE_BUILD_TYPE=Release ..
make
cd ..