diff options
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 } |