mirror of
https://git.freebsd.org/ports.git
synced 2025-04-28 09:36:41 -04:00
When PDF option is enabled PDF file is generated from Texinfo source file with texi2pdf, and the command is invoked with '--clear' option. When the command is invoked with the option, however, it returns non-zero value even if conversion is (or, at least seems to be) successful. As a result build of ports fails when the option is enabled. The command returns zero value if it is invoked without the option. So fix build by patching Makefile of source tree. While I'm here, replace CONFLICTS in devel/{forge,forge-devel/Makefile with CONFLICTS_INSTALL as neither of them interfere with build of the other.
11 lines
281 B
Text
11 lines
281 B
Text
--- docs/Makefile.orig 2024-05-07 16:47:04 UTC
|
|
+++ docs/Makefile
|
|
@@ -49,7 +49,7 @@ html-dir: $(PKG).texi
|
|
|
|
%.pdf: %.texi
|
|
@printf "Generating $@\n"
|
|
- @texi2pdf --clean $< > /dev/null
|
|
+ @texi2pdf $< > /dev/null
|
|
|
|
PUBLISH_PATH ?= /manual/
|
|
RELEASE_PATH ?= /manual/$(VERSION)/
|