Procházet zdrojové kódy

added option for adding --copy if autogen is run with it

Ben Collins před 27 roky
rodič
revize
55cf13ba80
1 změnil soubory, kde provedl 6 přidání a 4 odebrání
  1. 6 4
      autogen.sh

+ 6 - 4
autogen.sh

@@ -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