Skip to content

Instantly share code, notes, and snippets.

@strazzere
Created August 16, 2014 04:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save strazzere/9d80ff2a883040944ae1 to your computer and use it in GitHub Desktop.
Save strazzere/9d80ff2a883040944ae1 to your computer and use it in GitHub Desktop.
Compiling nasm on OSX Maverick
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