Created
August 16, 2014 04:04
-
-
Save strazzere/9d80ff2a883040944ae1 to your computer and use it in GitHub Desktop.
Compiling nasm on OSX Maverick
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
If you don't have some extra junk for documentation generation installed it will bail in the Makefile on these; | |
>.txt.xml: | |
> $(ASCIIDOC) -b docbook -d manpage -o $@ $< | |
> | |
>.xml.1: | |
> $(XMLTO) man --skip-validation $< 2>/dev/null | |
Noticed that ./configure properly "didn't find" the ASCIIDOC and XMLTO so I killed what was there; | |
>ASCIIDOC = false | |
>XMLTO = false | |
By using; | |
>ASCIIDOC = echo | |
>XMLTO = echo |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment