[FFmpeg-cvslog] [ffmpeg.org]: r241 - trunk/Makefile

diego subversion
Fri Jan 30 21:16:16 CET 2009


Author: diego
Date: Fri Jan 30 21:16:14 2009
New Revision: 241

Log:
Place parameters before files on the sed command line, BSD sed prefers this.

Modified:
   trunk/Makefile

Modified: trunk/Makefile
==============================================================================
--- trunk/Makefile	Thu Jan  1 05:24:29 2009	(r240)
+++ trunk/Makefile	Fri Jan 30 21:16:14 2009	(r241)
@@ -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