diff options
author | Jörg Mayer <jmayer@loplof.de> | 2002-08-28 12:25:54 +0000 |
---|---|---|
committer | Jörg Mayer <jmayer@loplof.de> | 2002-08-28 12:25:54 +0000 |
commit | 32ba9c288548f93720d177940f15875aa620017c (patch) | |
tree | f2cc8a7de9414e94ec6d21c748a7f7c2bda1778a /autogen.sh | |
parent | abe6b6bcc8e56b3606dec883ead36658a296088e (diff) | |
download | wireshark-32ba9c288548f93720d177940f15875aa620017c.tar.gz wireshark-32ba9c288548f93720d177940f15875aa620017c.tar.bz2 wireshark-32ba9c288548f93720d177940f15875aa620017c.zip |
As per Guys idea: Delete files in aclocal-missing if test succeeds.
svn path=/trunk/; revision=6113
Diffstat (limited to 'autogen.sh')
-rwxr-xr-x | autogen.sh | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/autogen.sh b/autogen.sh index 5a672184c9..634a1ec4e4 100755 --- a/autogen.sh +++ b/autogen.sh @@ -2,7 +2,7 @@ # # Run this to generate all the initial makefiles. # -# $Id: autogen.sh,v 1.18 2002/08/27 23:00:02 jmayer Exp $ +# $Id: autogen.sh,v 1.19 2002/08/28 12:25:54 jmayer Exp $ DIE=true PROJECT="Ethereal" @@ -90,22 +90,22 @@ fi aclocal_flags="`./aclocal-flags`" if glib-config --version >/dev/null 2>&1 ; then - echo glib OK + rm -f aclocal-missing/glib.m4 else cp aclocal-fallback/glib.m4 aclocal-missing/ fi if gtk-config --version >/dev/null 2>&1 ; then - echo gtk OK + rm -f aclocal-missing/gtk.m4 else cp aclocal-fallback/gtk.m4 aclocal-missing/ fi if pkg-config glib-2.0 >/dev/null 2>&1 ; then - echo glib-2.0 OK + rm -f aclocal-missing/glib-2.0.m4 else cp aclocal-fallback/glib-2.0.m4 aclocal-missing/ fi if pkg-config gtk+-2.0 >/dev/null 2>&1 ; then - echo gtk-2.0 OK + rm -f aclocal-missing/gtk-2.0.m4 else cp aclocal-fallback/gtk-2.0.m4 aclocal-missing/ fi |