Don't require configure to appear executable

Makes autogen.sh work on Cygwin when the build directory is on a
vmware Shared Folder volume.
This commit is contained in:
Tor Lillqvist
2012-11-30 23:42:36 +02:00
parent a1c05acd19
commit b8f3214f5c

View File

@@ -157,7 +157,7 @@ $ENV{AUTOMAKE_EXTRA_FLAGS} = '--warnings=no-portability' if (!($system eq 'Darwi
system ("$aclocal $aclocal_flags") && die "Failed to run aclocal";
unlink ("configure");
system ("autoconf") && die "Failed to run autoconf";
die "failed to generate configure" if (! -x "configure");
die "failed to generate configure" if (! -f "configure");
if (defined $ENV{NOCONFIGURE}) {
print "Skipping configure process.";