GNOME Bugzilla – Bug 309090
improved autogen.sh
Last modified: 2009-08-15 18:40:50 UTC
Please describe the problem: #!/bin/sh # Run this to generate all the initial makefiles, etc. srcdir=`dirname $0` test -z "$srcdir" && srcdir=. REQUIRED_AUTOMAKE_VERSION=1.7 DIE=0 (test -f $srcdir/configure.in) || { echo -n "**Error**: Directory "\`$srcdir\'" does not look like the" echo " top-level package directory" exit 1 } echo "Generating initial interface files" sh -c "cd $srcdir/libanjuta/interfaces && \ perl anjuta-idl-compiler.pl libanjuta && \ touch iface-built.stamp" which gnome-autogen.sh || { echo "You need to install gnome-common from the GNOME CVS" exit 1 } USE_GNOME2_MACROS=1 . gnome-autogen.sh Steps to reproduce: 1. 2. 3. Actual results: Expected results: Does this happen every time? Other information:
common, just test it, with the orginal it wouldn't build on my system. Less code and will build using the correct automake version. on ubuntu I got automake-1.4 and automake-1.9 installed without this it wanted to use the wrong automake version.
*** This bug has been marked as a duplicate of 312321 ***
Closing all fixed bugs. Sorry for the mass update :( ...