diff options
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 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 .. |