aboutsummaryrefslogtreecommitdiffstats
path: root/x11
diff options
context:
space:
mode:
authormat <mat@FreeBSD.org>2018-08-06 20:20:39 +0800
committermat <mat@FreeBSD.org>2018-08-06 20:20:39 +0800
commit4e8faa253f2e700a7ef30fe0cc5eb0da0f4ca327 (patch)
treefe7b266aae63eaffa720400e0b128e7fdc4c45c2 /x11
parentc07c8990637d5ca722534dbf0271f84dff78041e (diff)
downloadfreebsd-ports-gnome-4e8faa253f2e700a7ef30fe0cc5eb0da0f4ca327.tar.gz
freebsd-ports-gnome-4e8faa253f2e700a7ef30fe0cc5eb0da0f4ca327.tar.zst
freebsd-ports-gnome-4e8faa253f2e700a7ef30fe0cc5eb0da0f4ca327.zip
Fix Xprint build issue.
For some reason, the Xprint.man patch is supposed to get into a subdirectory that does not exist: -------------------------- |--- man/Xprint.man.orig 2018-07-24 10:46:56 UTC |+++ man/Xprint.man -------------------------- (Creating file Xprint.man...) Patching file Xprint.man using Plan A... Empty context always matches. Hunk #1 succeeded at 1. done So patch extracts it in the first existing directory, and then the build fails: make[1]: don't know how to make man/Xprint.7. Stop make[1]: stopped in /wrkdirs/usr/ports/x11/xorgproto/work/xorgproto-2018.4 *** Error code 1 Stop. Sponsored by: Absolight
Diffstat (limited to 'x11')
-rw-r--r--x11/xorgproto/Makefile3
1 files changed, 3 insertions, 0 deletions
diff --git a/x11/xorgproto/Makefile b/x11/xorgproto/Makefile
index b973889c7e18..d72e3f714c46 100644
--- a/x11/xorgproto/Makefile
+++ b/x11/xorgproto/Makefile
@@ -14,4 +14,7 @@ CONFIGURE_ARGS= --without-fop \
--without-xsltproc \
--enable-legacy
+pre-patch:
+ @${MKDIR} ${WRKSRC}/man
+
.include <bsd.port.mk>