From 5254ca152d4d01b09199f8816bfae3326159c9f5 Mon Sep 17 00:00:00 2001 From: rocky Date: Sun, 27 Jul 2008 01:51:21 +0000 Subject: [PATCH] Pass additional autogen.sh options to configure. --- INSTALL | 5 ++++- autogen.sh | 3 ++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/INSTALL b/INSTALL index 5458714e..d3c5b40a 100644 --- a/INSTALL +++ b/INSTALL @@ -2,7 +2,7 @@ Installation Instructions ************************* Copyright (C) 1994, 1995, 1996, 1999, 2000, 2001, 2002, 2004, 2005, -2006 Free Software Foundation, Inc. +2006, 2007 Free Software Foundation, Inc. This file is free documentation; the Free Software Foundation gives unlimited permission to copy, distribute and modify it. @@ -67,6 +67,9 @@ The simplest way to compile this package is: all sorts of other programs in order to regenerate files that came with the distribution. + 6. Often, you can also type `make uninstall' to remove the installed + files again. + Compilers and Options ===================== diff --git a/autogen.sh b/autogen.sh index 771e0d78..5158e8eb 100755 --- a/autogen.sh +++ b/autogen.sh @@ -1,5 +1,6 @@ #!/bin/sh # Run this to generate all the initial makefiles, etc. +# Additional options go to configure. echo "Rebuilding ./configure with autoreconf..." autoreconf -f -i @@ -8,4 +9,4 @@ if [ $? -ne 0 ]; then exit $? fi -./configure --enable-maintainer-mode +./configure --enable-maintainer-mode "$@"