diff options
author | DRC <dcommander@users.sourceforge.net> | 2010-01-22 09:37:27 +0000 |
---|---|---|
committer | DRC <dcommander@users.sourceforge.net> | 2010-01-22 09:37:27 +0000 |
commit | 3cca6af4ae0d5a97b4d436b126278b332eba6192 (patch) | |
tree | 92f90c7dcf4d62cbe6d573cbdd71e552d923e7f4 /unix | |
parent | d455393c8554bec83f13eb4a4fe96ff9067f58d8 (diff) | |
download | tigervnc-3cca6af4ae0d5a97b4d436b126278b332eba6192.tar.gz tigervnc-3cca6af4ae0d5a97b4d436b126278b332eba6192.zip |
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
Diffstat (limited to 'unix')
-rwxr-xr-x | unix/build-xorg-7.4 | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/unix/build-xorg-7.4 b/unix/build-xorg-7.4 index 69b5a03c..a783f603 100755 --- a/unix/build-xorg-7.4 +++ b/unix/build-xorg-7.4 @@ -78,7 +78,9 @@ init() popd cd .. - autoreconf -fiv + if [ ! -f ./configure ]; then + autoreconf -fiv + fi cd unix } |