Put a space between the parameter name and its description when prompting for it.
[synfig.git] / synfig-studio / trunk / win32build.sh
blobb78dbb9a9439038e16837e57a347c49dbef8e39a
1 #!/bin/sh
3 OPTIONS=""
4 OPTIONS="$OPTIONS --disable-optimization"
5 #OPTIONS="$OPTIONS --disable-debug"
6 OPTIONS="$OPTIONS --enable-debug"
9 BUILDDIR=win32build
11 [ -e configure ] || autoreconf --force --install || exit 1
13 [ -d $BUILDDIR ] && rm -fr $BUILDDIR
15 mkdir $BUILDDIR
17 cd $BUILDDIR
19 ../configure --host=mingw32 --prefix=C:/PROGRA~1/Synfig $OPTIONS || exit 1
21 make package