rendercheck: autogen.sh

Ian Romanick idr at kemper.freedesktop.org
Tue Jan 20 12:05:44 PST 2009


 autogen.sh |    4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

New commits:
commit 37eac61e71a313df9927ca2a41ef49bda92fd9c6
Author: Ian Romanick <ian.d.romanick at intel.com>
Date:   Tue Jan 20 12:04:46 2009 -0800

    Make autogen.sh look like the autogen.sh in every other fd.o project
    
    Explicitly calling aclocal in autogen.sh circumvents the user's
    ACLOCAL environment setting and pretty much always does the wrong thing.

diff --git a/autogen.sh b/autogen.sh
index 24c845f..1b15e18 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -6,9 +6,7 @@ test -z "$srcdir" && srcdir=.
 ORIGDIR=`pwd`
 cd $srcdir
 
-aclocal || exit 1
-automake --foreign --add-missing || exit 1
-autoconf || exit 1
+autoreconf -v --install || exit 1
 
 cd $ORIGDIR || exit $?
 


More information about the xorg-commit mailing list