Use configure scripts included in the tarball, if they exist.  This is to avoid problems caused by trying to re-generate the configure scripts using older versions of Autotools than the ones that were used to generate the scripts in the tarball.



git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@3953 3789f03b-4d11-0410-bbf8-ca57d06f2519
diff --git a/release/build-osx-m32 b/release/build-osx-m32
index f2feeaa..02cb295 100755
--- a/release/build-osx-m32
+++ b/release/build-osx-m32
@@ -10,7 +10,9 @@
 CXXFLAGS=$CFLAGS
 LDFLAGS=$CFLAGS
 export CFLAGS CXXFLAGS LDFLAGS
-autoreconf -fiv
+if [ ! -f ./configure ]; then
+    autoreconf -fiv
+fi
 configure
 make
 popd