diff options
author | Andrei Karas <akaras@inbox.ru> | 2017-10-10 22:14:45 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2017-10-10 22:15:57 +0300 |
commit | aa3f63fd497558a02feb3ddbc44f31eac091f39b (patch) | |
tree | 0e28b9b1f0501dd8be9e1a38db4ec1777fa3fbfa /nightly/buildlinux.sh | |
parent | 7c10a6b61e9d06a4ae9cc9f942dfacb6fcfd9d3d (diff) | |
download | mv-aa3f63fd497558a02feb3ddbc44f31eac091f39b.tar.gz mv-aa3f63fd497558a02feb3ddbc44f31eac091f39b.tar.bz2 mv-aa3f63fd497558a02feb3ddbc44f31eac091f39b.tar.xz mv-aa3f63fd497558a02feb3ddbc44f31eac091f39b.zip |
Remove most unused files.
Diffstat (limited to 'nightly/buildlinux.sh')
-rwxr-xr-x | nightly/buildlinux.sh | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/nightly/buildlinux.sh b/nightly/buildlinux.sh deleted file mode 100755 index b57b5ee71..000000000 --- a/nightly/buildlinux.sh +++ /dev/null @@ -1,33 +0,0 @@ -#!/bin/bash - -cd .. - -DSTDIR=packaging/build/linux - -export CXXFLAGS="-Wall -g0 -O3" -autoreconf -i -#make clean -./configure --enable-portable=yes -result=$? -if [ "$result" != 0 ]; then - exit $result -fi - -make -j8 -result=$? -if [ "$result" != 0 ]; then - exit $result -fi - -if [ -e src/manaplus ]; -then - strip src/manaplus - rm -rf $DSTDIR - mkdir -p $DSTDIR - cp -r data $DSTDIR - mkdir -p $DSTDIR/bin - cp src/manaplus $DSTDIR/bin - cp nightly/runme.sh $DSTDIR - cp "nightly/run tests.sh" $DSTDIR - cp nightly/evol.sh $DSTDIR -fi |