-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 If you're not interested in Texinfo to HTML, there's a pretty simple "kludge". Rename your texi2info and replace it with a small bash script. Something like:
#!/bin/bash exit 0 Make sure it's executable. Then re-run the "make install". When texi2info is executed, it'll always return as a "success". Of course, you won't have the texinfo -> HTML stuff. I probably wouldn't care, but you might. Otherwise, try updating texi2info. Hope this helps. YMMV and good luck. On 3/5/12 9:54 PM, Rob McKennon wrote: > 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] > - -- - - Champ Clark III ([email protected]) Quadrant Information Security (http://quadrantsec.com) Key Fingerprint: 2E56 C2EB 1B25 C517 D5BA 2DCF 5E70 B2F8 0381 878A GPG Key ID: 0381878A -----BEGIN PGP SIGNATURE----- Version: GnuPG/MacGPG2 v2.0.17 (Darwin) Comment: GPGTools - http://gpgtools.org Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/ iQEcBAEBAgAGBQJPVYUCAAoJENnmXt7Lmc3Kai0IAIRZpylThUmATlo9ZBx2vCml xJVeBCNpAo9o3x9ubveREDVzYbfMsBccfgGKjCb+suv3riUP3Or3AgyIw4/TsUl4 q+BLVLK2CwbZnCUtmDSan05iks0AsSChzD46Ycm06q4wGSY4EW1qmnJ7tikjXWWp d6qpQUN1LMOQ6KRbTQngOp5qH5tCfnRYe2JiuDv0E5S+jZwRZcei889xiyoY1Rl4 IlBBscDNXMueA/lUfkTaSu74ei02SvtyEYdG22gpa5BGePWMz11r9//gyZ4/Keh/ 9O3OdoCVJhMRASaIWh4gG7k00GR/DgrFcCofkXdX9dulJg5rpWwK2dThybphXzQ= =vwri -----END PGP SIGNATURE----- --------------------------------------------------------------------- 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]

