[FFmpeg-cvslog] doc/Makefile: generate library headers with the correct section number

Stefano Sabatini git at videolan.org
Sun Nov 11 14:07:03 CET 2012


ffmpeg | branch: master | Stefano Sabatini <stefasab at gmail.com> | Sun Nov 11 12:50:44 2012 +0100| [c0aff4064d3990d467d976530ef45b51062fb366] | committer: Stefano Sabatini

doc/Makefile: generate library headers with the correct section number

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=c0aff4064d3990d467d976530ef45b51062fb366
---

 doc/Makefile |    4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/doc/Makefile b/doc/Makefile
index 4c89d7f..d0b4dfc 100644
--- a/doc/Makefile
+++ b/doc/Makefile
@@ -55,8 +55,10 @@ doc/%.pod: doc/%.texi $(GENTEXI)
 	$(M)perl $(SRC_PATH)/doc/texi2pod.pl -Idoc $< $@
 
 doc/%.1 doc/%.3: TAG = MAN
-doc/%.1 doc/%.3: doc/%.pod $(GENTEXI)
+doc/%.1: doc/%.pod $(GENTEXI)
 	$(M)pod2man --section=1 --center=" " --release=" " $< > $@
+doc/%.3: doc/%.pod $(GENTEXI)
+	$(M)pod2man --section=3 --center=" " --release=" " $< > $@
 
 $(DOCS) doc/doxy/html: | doc/
 



More information about the ffmpeg-cvslog mailing list