From 9e89f356ba5f91469a910e25b7479cde9e0a3aa5 Mon Sep 17 00:00:00 2001 From: Hans-Christoph Steiner Date: Tue, 25 Jul 2006 00:41:12 +0000 Subject: fixed up autobuild script so that it applies the patches; added some stuff towards automating MinGW builds svn path=/trunk/; revision=5398 --- scripts/automated-builder.sh | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'scripts') 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 -- cgit v1.2.1