Explorar o código

Now copies the Makefile.am template instead of rename()ing it.

Ryan C. Gordon %!s(int64=24) %!d(string=hai) anos
pai
achega
b2018d63c8
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      bootstrap

+ 1 - 1
bootstrap

@@ -2,7 +2,7 @@
 
 set -e
 echo "Initial preparation...this can take awhile, so sit tight..."
-perl -w -e 'exit 0 if (-f "Makefile.am"); my $x = `automake --version |head -n 1`; chomp($x); $x = 0.0 if ($x !~ s/\A.*?(\d+\.\d+).*\Z/$1/); if ($x < 1.5) { rename ("./Makefile.am.oldautomake", "./Makefile.am"); } else { rename ("./Makefile.am.newautomake", "./Makefile.am"); }'
+perl -w -e 'use File::Copy; exit 0 if (-f "Makefile.am"); my $x = `automake --version |head -n 1`; chomp($x); $x = 0.0 if ($x !~ s/\A.*?(\d+\.\d+).*\Z/$1/); if ($x < 1.5) { copy("./Makefile.am.oldautomake", "./Makefile.am"); } else { copy("./Makefile.am.newautomake", "./Makefile.am"); }'
 aclocal
 libtoolize --automake --copy --force
 autoheader