Use '?' to separate the sed commands as ',' is used when people pass

1998-09-30  Miguel de Icaza  <miguel@nuclecu.unam.mx>

	* Makefile.am: Use '?' to separate the sed
	commands as ',' is used when people pass -Wl,something.
This commit is contained in:
Miguel de Icaza 1998-09-30 19:28:59 +00:00 committed by Arturo Espinosa
parent 62e8e80c02
commit 60681bd36c
2 changed files with 9 additions and 3 deletions

View File

@ -1,3 +1,9 @@
1998-09-30 Miguel de Icaza <miguel@nuclecu.unam.mx>
* 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 <Daniel.Veillard@w3.org>
* tree.c, tree.h: added a per-document compression interface.

View File

@ -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