diff options
Diffstat (limited to '3rd-party')
m--------- | 3rd-party/SingleApplication/SingleApplication.git | 0 | ||||
-rwxr-xr-x | 3rd-party/breakpad/build.sh | 21 |
2 files changed, 0 insertions, 21 deletions
diff --git a/3rd-party/SingleApplication/SingleApplication.git b/3rd-party/SingleApplication/SingleApplication.git -Subproject c6bc2a3e52701d1a0282bd9e3755a6d01fa629d +Subproject 16ea64b2548b02f59bf49b255466278c3ff0ace diff --git a/3rd-party/breakpad/build.sh b/3rd-party/breakpad/build.sh deleted file mode 100755 index 5e9b1e3..0000000 --- a/3rd-party/breakpad/build.sh +++ /dev/null @@ -1,21 +0,0 @@ -#!/bin/bash - -if [ ! -f breakpad.git/src/third_party/lss/linux_syscall_support.h ]; then - mkdir -p breakpad.git/src/third_party/lss - curl -L https://chromium.googlesource.com/linux-syscall-support/+/master/linux_syscall_support.h?format=TEXT | base64 --decode > breakpad.git/src/third_party/lss/linux_syscall_support.h -fi - -buildpath=$(pwd)/build -if [ ! -d $buildpath ]; then - mkdir $buildpath -fi - -installpath=$(pwd)/install -if [ ! -d $installpath ]; then - mkdir $installpath -fi - -cd $buildpath -../breakpad.git/configure --prefix=$installpath -make -j 2 -make install |