[svn.haxx.se] · SVN Dev · SVN Users · SVN Org · TSVN Dev · TSVN Users · Subclipse Dev · Subclipse Users · this month's index

neon.m4 bug

From: Marcus Comstedt <marcus_at_mc.pp.se>
Date: 2002-01-23 19:12:36 CET

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

This is an archived mail posted to the Subversion Dev mailing list.

This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.