[FFmpeg-cvslog] [ffmpeg.org]: r242 - trunk/Makefile
diego
subversion
Fri Jan 30 21:32:43 CET 2009
Author: diego
Date: Fri Jan 30 21:32:42 2009
New Revision: 242
Log:
Use # instead of / as delimiter character in sed command.
It works with both BSD and GNU sed variants.
Modified:
trunk/Makefile
Modified: trunk/Makefile
==============================================================================
--- trunk/Makefile Fri Jan 30 21:16:14 2009 (r241)
+++ trunk/Makefile Fri Jan 30 21:32:42 2009 (r242)
@@ -12,7 +12,7 @@
rm -f $(TARGETS)
htdocs/%.html: src/% Makefile
- sed -e "/FFMPEG_WEBSITE_NAVBAR/a\
+ sed -e "#FFMPEG_WEBSITE_NAVBAR#a\
<center>\n\
[<a href="index.html">Main Page and News</a>]\n\
[<a href="changelog.html">Changelog</a>]\n\
@@ -26,6 +26,6 @@
[<a href="shame.html">Hall of Shame</a>]\n\
</center>\n\
<hr>" \
- -e "/FFMPEG_WEBSITE_NAVBAR/d" $< > $@
+ -e "#FFMPEG_WEBSITE_NAVBAR#d" $< > $@
.PHONY: all clean
More information about the ffmpeg-cvslog
mailing list