From: Ben Collins Date: Sat, 16 Oct 1999 02:26:05 +0000 (+0000) Subject: added option for adding --copy if autogen is run with it X-Git-Url: https://err.no/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=55cf13ba8083e7e2ec222b52d44cf088e65ab411;p=dpkg added option for adding --copy if autogen is run with it --- diff --git a/autogen.sh b/autogen.sh index 314c9b08..44b58318 100755 --- a/autogen.sh +++ b/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