diff options
author | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2006-07-25 00:41:12 +0000 |
---|---|---|
committer | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2006-07-25 00:41:12 +0000 |
commit | 9e89f356ba5f91469a910e25b7479cde9e0a3aa5 (patch) | |
tree | e5417a8b40b0274e24e386761de8b65706d2e96e /scripts | |
parent | 90636a8ac329ab8b0b3175e8b1488d499894e77c (diff) |
fixed up autobuild script so that it applies the patches; added some stuff towards automating MinGW builds
svn path=/trunk/; revision=5398
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/automated-builder.sh | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/scripts/automated-builder.sh b/scripts/automated-builder.sh index 6847c719..ea028c18 100755 --- a/scripts/automated-builder.sh +++ b/scripts/automated-builder.sh @@ -25,18 +25,20 @@ BUILD_DIR=. if [ "$SYSTEM" == "Linux" ]; then BUILD_DIR=linux_make fi - if [ "$SYSTEM" == "Darwin" ]; then BUILD_DIR=darwin_app fi +if [ "`echo $SYSTEM | sed -n 's|\(MINGW\)|\1|p'`" == "MINGW" ]; then + BUILD_DIR=win32_inno +fi cd "$BUILD_DIR" pwd make distclean make package_clean rm -rf build -#make -C "${auto_build_root_dir}/packages" patch_pd +make -C "${auto_build_root_dir}/packages" patch_pd make install && make package -#make test_package +make test_package make test_locations |