diff options
author | Arturo Espinosa <unammx@src.gnome.org> | 1998-04-22 10:56:19 +0800 |
---|---|---|
committer | Arturo Espinosa <unammx@src.gnome.org> | 1998-04-22 10:56:19 +0800 |
commit | 6b159ed2c33a1a208395f9b57b7d61d7c1d04842 (patch) | |
tree | 8ff6d5d54ac924ac7928a6b18cfc824f3da8b891 /macros | |
parent | 3b00cc74799a3b29e817b48292a391b780bb57b5 (diff) | |
download | gsoc2013-evolution-6b159ed2c33a1a208395f9b57b7d61d7c1d04842.tar gsoc2013-evolution-6b159ed2c33a1a208395f9b57b7d61d7c1d04842.tar.gz gsoc2013-evolution-6b159ed2c33a1a208395f9b57b7d61d7c1d04842.tar.bz2 gsoc2013-evolution-6b159ed2c33a1a208395f9b57b7d61d7c1d04842.tar.lz gsoc2013-evolution-6b159ed2c33a1a208395f9b57b7d61d7c1d04842.tar.xz gsoc2013-evolution-6b159ed2c33a1a208395f9b57b7d61d7c1d04842.tar.zst gsoc2013-evolution-6b159ed2c33a1a208395f9b57b7d61d7c1d04842.zip |
Fix for gedit compilation -mig
svn path=/trunk/; revision=181
Diffstat (limited to 'macros')
-rw-r--r-- | macros/autogen.sh | 30 |
1 files changed, 17 insertions, 13 deletions
diff --git a/macros/autogen.sh b/macros/autogen.sh index d2a39c8237..1e39bf1060 100644 --- a/macros/autogen.sh +++ b/macros/autogen.sh @@ -69,19 +69,23 @@ fi for j in `find $srcdir -name configure.in -print` do i=`dirname $j` - macrodirs=`sed -n -e 's,AM_ACLOCAL_INCLUDE(\(.*\)),\1,gp' < $j` - echo processing $i - ## debug - test -n "$macrodirs" && echo \`aclocal\' will also look in \`$macrodirs\' - (cd $i; \ - aclocalinclude=""; \ - for k in $macrodirs; do \ - if test -d $k; then aclocalinclude="$aclocalinclude -I $k"; \ - else echo "**Warning**: No such directory \`$k'. Ignored."; fi; \ - done; \ - libtoolize --copy --force; \ - aclocal $aclocalinclude; \ - autoheader; automake --add-missing --gnu; autoheader; autoconf) + if test -e $i/NO-AUTO-GEN; then + echo skipping $i -- flagged as no auto-gen + else + macrodirs=`sed -n -e 's,AM_ACLOCAL_INCLUDE(\(.*\)),\1,gp' < $j` + echo processing $i + ## debug + test -n "$macrodirs" && echo \`aclocal\' will also look in \`$macrodirs\' + (cd $i; \ + aclocalinclude=""; \ + for k in $macrodirs; do \ + if test -d $k; then aclocalinclude="$aclocalinclude -I $k"; \ + else echo "**Warning**: No such directory \`$k'. Ignored."; fi; \ + done; \ + libtoolize --copy --force; \ + aclocal $aclocalinclude; \ + autoheader; automake --add-missing --gnu; autoheader; autoconf) + fi done echo running $srcdir/configure --enable-maintainer-mode "$@" |