From 19c4adf8ba9dc73eadd3503ce820cb6a5f1cc13c Mon Sep 17 00:00:00 2001 From: Patrick Griffis Date: Thu, 31 Mar 2016 07:48:28 -0400 Subject: [PATCH] autogen: Don't copy all files by default --- autogen.sh | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/autogen.sh b/autogen.sh index d669a37b..df42d3bd 100755 --- a/autogen.sh +++ b/autogen.sh @@ -9,10 +9,15 @@ test -z "$srcdir" && srcdir=. exit 1 } -aclocal --install -I m4 || exit 1 -glib-gettextize --force --copy || exit 1 -intltoolize --force --copy --automake || exit 1 -autoreconf --force --install -Wno-portability || exit 1 +if [ "$1" = "--copy" ]; then + shift + aclocal --force --install || exit 1 + intltoolize --force --copy --automake || exit 1 + autoreconf --force --install --include=m4 -Wno-portability || exit 1 +else + intltoolize --automake || exit 1 + autoreconf --install --symlink --include=m4 -Wno-portability || exit 1 +fi if [ "$NOCONFIGURE" = "" ]; then $srcdir/configure "$@" || exit 1