From: DRC Date: Fri, 22 Jan 2010 09:32:31 +0000 (+0000) Subject: Use configure scripts included in the tarball, if they exist. This is to avoid probl... X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=3bb2ff7fc243e6e2007de555dd93d6791078a51f;p=tigervnc.git 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/branches/1_0@3952 3789f03b-4d11-0410-bbf8-ca57d06f2519 --- diff --git a/unix/build-xorg-7.4 b/unix/build-xorg-7.4 index f5ad53c9..190fd871 100755 --- a/unix/build-xorg-7.4 +++ b/unix/build-xorg-7.4 @@ -78,7 +78,9 @@ init() patch -p1 < ../xserver15.patch popd - autoreconf -fiv + if [ ! -f ./configure ]; then + autoreconf -fiv + fi }