From 60681bd36c91c85cd59c0b88b28bc60eeb29740f Mon Sep 17 00:00:00 2001 From: Miguel de Icaza Date: Wed, 30 Sep 1998 19:28:59 +0000 Subject: [PATCH] Use '?' to separate the sed commands as ',' is used when people pass 1998-09-30 Miguel de Icaza * Makefile.am: Use '?' to separate the sed commands as ',' is used when people pass -Wl,something. --- ChangeLog | 6 ++++++ Makefile.am | 6 +++--- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index a0d8785d..1b634217 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +1998-09-30 Miguel de Icaza + + * Makefile.am: Use '?' to separate the sed + commands as ',' is used when people pass -Wl,something. + + Thu Sep 24 15:13:29 EDT 1998 Daniel Veillard * tree.c, tree.h: added a per-document compression interface. diff --git a/Makefile.am b/Makefile.am index 875f4980..4bbe8f37 100644 --- a/Makefile.am +++ b/Makefile.am @@ -56,8 +56,8 @@ EXTRA_DIST = xmlConf.sh.in xmlConf.sh: xmlConf.sh.in Makefile ## Use sed and then mv to avoid problems if the user interrupts. - sed -e 's,\@XML_LIBDIR\@,$(XML_LIBDIR),g' \ - -e 's,\@XML_INCLUDEDIR\@,$(XML_INCLUDEDIR),g' \ - -e 's,\@XML_LIBS\@,$(XML_LIBS),g' \ + sed -e 's?\@XML_LIBDIR\@?$(XML_LIBDIR)?g' \ + -e 's?\@XML_INCLUDEDIR\@?$(XML_INCLUDEDIR)?g' \ + -e 's?\@XML_LIBS\@?$(XML_LIBS)?g' \ < $(srcdir)/xmlConf.sh.in > xmlConf.tmp \ && mv xmlConf.tmp xmlConf.sh