From 32ba9c288548f93720d177940f15875aa620017c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Mayer?= Date: Wed, 28 Aug 2002 12:25:54 +0000 Subject: As per Guys idea: Delete files in aclocal-missing if test succeeds. svn path=/trunk/; revision=6113 --- autogen.sh | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'autogen.sh') 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 -- cgit v1.2.1