While compiling ffmpeg, it gets through all the hard stuff, but then when it gets to the "doc" directory, I am getting this error:

CC    libavutil/tree.o
CC    libavutil/utils.o
CC    libavutil/x86/cpu.o
AR    libavutil/libavutil.a
HTML    doc/ffmpeg.html
Unknown option: init-file
Try 'texi2html -help' for usage instructions.
make: *** [doc/ffmpeg.html] Error 2


So... looking at the ~doc/Makefile
    31  doc/%.html: TAG = HTML
    32  doc/%.html: doc/%.texi $(SRC_PATH)/doc/t2h.init
    33          $(Q)$(TEXIDEP)
34 $(M)texi2html -monolithic --init-file $(SRC_PATH)/doc/t2h.init --output $@ $<

So the Makefile is inserting the "--init-file" switch, but evidently that is causing the problem???

So I commented it out like so:

    31  doc/%.html: TAG = HTML
    32  doc/%.html: doc/%.texi $(SRC_PATH)/doc/t2h.init
    33          $(Q)$(TEXIDEP)
34 # $(M)texi2html -monolithic --init-file $(SRC_PATH)/doc/t2h.init --output $@ $< 35 $(M)texi2html -monolithic $(SRC_PATH)/doc/t2h.init --output $@ $<

and now I get this error:

[rob@skylan:~/Downloads/ffmpeg-0.10]$ make
HTML    doc/ffmpeg.html
Need exactly one file to translate
Try 'texi2html -help' for usage instructions.
make: *** [doc/ffmpeg.html] Error 2


texi2html --version
1.64


Google hasn't been much help, and I've never had to deal with texi2html.

Has anyone ran across this before?


Rob.


---------------------------------------------------------------------
Archive      http://marc.info/?l=jaxlug-list&r=1&w=2
RSS Feed     http://www.mail-archive.com/[email protected]/maillist.xml
Unsubscribe  [email protected]

Reply via email to