diff options
author | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2016-02-02 02:37:29 +0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2016-02-05 07:02:20 +0700 |
commit | 1774bc497f784ad60017d678be0c30b1d8a71244 (patch) | |
tree | a04f754dac4cf971ae858f79b2b1118b5596fe18 /games/openlierox | |
parent | e6de4aba45f1f730dbfa868df309bc7e4f109827 (diff) |
games/openlierox: Disable Breakpad to fix build failure.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'games/openlierox')
-rw-r--r-- | games/openlierox/openlierox.SlackBuild | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/games/openlierox/openlierox.SlackBuild b/games/openlierox/openlierox.SlackBuild index 0fd7f2636043..33ab470ece1f 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 .. |