+2011-03-14 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
+
+ libtoolize: detect -I<dir> (without space) in ACLOCAL_AMFLAGS.
+ * libtoolize.m4sh (func_scan_files): Also accept -I<dir>
+ (without intervening space) in ACLOCAL_AMFLAGS.
+ * THANKS: Update.
+ Report from Jan Engelhardt.
+
2011-03-04 Peter O'Gorman <peter@pogma.com>
On Mac OS X try .dylib as well as .so with lt_dlopenext
Jakub Bogusz qboosh@pld-linux.org
Jacob Meuser jakemsr@jakemsr.com
James Su james.su@gmail.com
+ Jan Engelhardt jengelh@medozas.de
Jay Krell jay.krell@cornell.edu
Jeff Squyres jsquyres@lam-mpi.org
Jeremy C. Reed reed@reedmedia.net
# Hunt for ACLOCAL_AMFLAGS in `Makefile.am' for a `-I' argument.
my_sed_aclocal_flags='
- /^[ ]*ACLOCAL_[A-Z_]*FLAGS[ ]*=/ {
- s,^[^=]*=[ ]*\(.*\), \1,
+ /^[ ]*ACLOCAL_[A-Z_]*FLAGS[ ]*=[ ]*/ {
+ s,,,
q
}
d'
am_macrodir="$arg"
break
else
- if test "X$arg" = "X-I"; then
- my_macrodir_is_next=:
- else
- my_macrodir_is_next=false
- fi
+ case $arg in
+ -I) my_macrodir_is_next=: ;;
+ -I*)
+ am_macrodir=`$ECHO "$arg" | sed 's,^-I,,'`
+ break
+ ;;
+ *) my_macrodir_is_next=false ;;
+ esac
fi
done
fi