Hello again.
Found a new shellscript-bug, this time in ac-helpers/neon.m4.
On line 80, double quotes are used inside a backtick-expression which
is in itself double quoted. The inner double quotes need to be
escaped with a backslash, or even better substituted with single
quotes.
Patch follows:
Index: ac-helpers/neon.m4
===================================================================
--- ac-helpers/neon.m4
+++ ac-helpers/neon.m4 Wed Jan 23 19:07:13 2002
@@ -77,7 +77,7 @@
# Also find out which macros neon defines (but ignore extra include paths):
# this will include -DNEON_SSL if neon was built with SSL support
changequote(<<, >>)dnl
- CFLAGS="$CFLAGS `$SHELL $abs_builddir/neon/neon-config --cflags | sed -e "s/-I[^ ]*//g"`"
+ CFLAGS="$CFLAGS `$SHELL $abs_builddir/neon/neon-config --cflags | sed -e 's/-I[^ ]*//g'`"
changequote([, ])dnl
fi
// Marcus
---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
For additional commands, e-mail: dev-help@subversion.tigris.org
Received on Sat Oct 21 14:36:58 2006