cups-2.0.3-cross-compile.patch 773 B

12345678910111213141516171819202122232425262728293031
  1. we don't actually install the generated html output, so no point in building
  2. them. this also helps cross-compiling because the tool to create the html
  3. uses $CC and has no logic for $BUILD_CC. simpler to disable than fix.
  4. --- a/man/Makefile
  5. +++ b/man/Makefile
  6. @@ -73,7 +73,7 @@ MAN8 = cupsaccept.$(MAN8EXT) \
  7. # Make everything...
  8. #
  9. -all: $(MAN1) $(MAN5) $(MAN7) $(MAN8) html
  10. +all: $(MAN1) $(MAN5) $(MAN7) $(MAN8)
  11. #
  12. similarly, the genstrings tool is used to gather all the translatable strings
  13. in the code base for passing to gettext. in our builds, those strings already
  14. exist, so no point in running this tool.
  15. --- a/ppdc/Makefile
  16. +++ b/ppdc/Makefile
  17. @@ -70,7 +70,6 @@ EXECTARGETS = \
  18. TARGETS = \
  19. $(LIBTARGETS) \
  20. $(EXECTARGETS) \
  21. - genstrings
  22. #