aboutsummaryrefslogtreecommitdiffstats
path: root/aclocal-flags
diff options
context:
space:
mode:
authorjmayer <jmayer@f5534014-38df-0310-8fa8-9805f1628bb7>2003-01-22 00:19:00 +0000
committerjmayer <jmayer@f5534014-38df-0310-8fa8-9805f1628bb7>2003-01-22 00:19:00 +0000
commitbfd7c15fd753b2f82d60feb4b0e5b1e5ee86d767 (patch)
tree58ec4b3e9f6d588499c85992cfe83cd32e44aac9 /aclocal-flags
parenta28d45f7ba33393acf21a84f2f7c628543e16033 (diff)
aclocal-flags, autogen.sh:
- Fix handling of aclocal include flags for aclocal-include autogen.sh: - Name version variables individually - Disable configure at end of autogen.sh git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@6965 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'aclocal-flags')
-rwxr-xr-xaclocal-flags8
1 files changed, 6 insertions, 2 deletions
diff --git a/aclocal-flags b/aclocal-flags
index ba3a519033..fdf750da8f 100755
--- a/aclocal-flags
+++ b/aclocal-flags
@@ -21,7 +21,7 @@
# "aclocal" will look in that directory twice, and get well and truly
# confused, reporting a ton of duplicate macro definitions.)
#
-# $Id: aclocal-flags,v 1.4 2002/03/06 06:36:22 itojun Exp $
+# $Id: aclocal-flags,v 1.5 2003/01/22 00:19:00 jmayer Exp $
#
#
@@ -41,6 +41,9 @@ else
gtk_aclocal_dir=$gtk_prefix/share/aclocal
fi
+ac_missing_dir=`dirname $0`
+echo -n "-I $ac_missing_dir/aclocal-missing"
+
#
# If there's no "aclocal", the former will be empty; if there's no
# "gtk-config", the latter will be empty.
@@ -51,6 +54,7 @@ fi
if [ ! -z "$aclocal_dir" -a ! -z "$gtk_aclocal_dir" \
-a "$aclocal_dir" != "$gtk_aclocal_dir" ]
then
- echo "-I $gtk_aclocal_dir"
+ echo -n " $gtk_aclocal_dir"
fi
+echo
exit 0