diff options
author | Jörg Mayer <jmayer@loplof.de> | 2003-01-22 00:19:00 +0000 |
---|---|---|
committer | Jörg Mayer <jmayer@loplof.de> | 2003-01-22 00:19:00 +0000 |
commit | 4c50ff909d156ecc024cff1e1c519f7e169faefc (patch) | |
tree | 58ec4b3e9f6d588499c85992cfe83cd32e44aac9 /aclocal-flags | |
parent | 2b78e3931d987bbf018c493aa9b96b2a3d137bc5 (diff) | |
download | wireshark-4c50ff909d156ecc024cff1e1c519f7e169faefc.tar.gz wireshark-4c50ff909d156ecc024cff1e1c519f7e169faefc.tar.bz2 wireshark-4c50ff909d156ecc024cff1e1c519f7e169faefc.zip |
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
svn path=/trunk/; revision=6965
Diffstat (limited to 'aclocal-flags')
-rwxr-xr-x | aclocal-flags | 8 |
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 |