From 55cf13ba8083e7e2ec222b52d44cf088e65ab411 Mon Sep 17 00:00:00 2001 From: Ben Collins Date: Sat, 16 Oct 1999 02:26:05 +0000 Subject: [PATCH] added option for adding --copy if autogen is run with it --- autogen.sh | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) 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 -- 2.39.5