]> err.no Git - dpkg/commitdiff
added option for adding --copy if autogen is run with it
authorBen Collins <bcollins@debian.org>
Sat, 16 Oct 1999 02:26:05 +0000 (02:26 +0000)
committerBen Collins <bcollins@debian.org>
Sat, 16 Oct 1999 02:26:05 +0000 (02:26 +0000)
autogen.sh

index 314c9b088c5ec59450531aa798780bcad832d7df..44b58318369c1b49797ca09876baa0b1b6a65ef4 100755 (executable)
@@ -1,18 +1,20 @@
 #! /bin/sh
 
+copy=$1
+
 # Start by setting up everything for main tree
 aclocal -I ./automake
 autoheader
-gettextize
-libtoolize --force
-automake --add-missing --foreign
+gettextize $copy
+libtoolize --force $copy
+automake --add-missing --foreign $copy
 autoconf
 
 # Utils has it's own configure, so we need to repeat this there
 cd utils
 aclocal -I ../automake
 autoheader
-automake --foreign
+automake --foreign $copy
 autoconf
 
 # Return to the previous directory