Get rid of all references to the bootstrap script since it was removed
[synfig.git] / synfig-studio / trunk / win32build.sh
index cfaf3b7..b78dbb9 100755 (executable)
@@ -2,13 +2,13 @@
 
 OPTIONS=""
 OPTIONS="$OPTIONS --disable-optimization"
-OPTIONS="$OPTIONS --disable-debug"
-OPTIONS="$OPTIONS --enable-license-key"
+#OPTIONS="$OPTIONS --disable-debug"
+OPTIONS="$OPTIONS --enable-debug"
 
 
 BUILDDIR=win32build
 
-[ -e configure ] || ./bootstrap || exit 1
+[ -e configure ] || autoreconf --force --install || exit 1
 
 [ -d $BUILDDIR ] && rm -fr $BUILDDIR
 
@@ -16,10 +16,8 @@ mkdir $BUILDDIR
 
 cd $BUILDDIR
 
-../configure $OPTIONS || exit 1
+../configure --host=mingw32 --prefix=C:/PROGRA~1/Synfig $OPTIONS || exit 1
 
-make -j2
-#make package
+make package
 
-make installer