diff options
author | Dmitry Marakasov <amdmi3@FreeBSD.org> | 2015-11-06 16:47:43 +0000 |
---|---|---|
committer | Dmitry Marakasov <amdmi3@FreeBSD.org> | 2015-11-06 16:47:43 +0000 |
commit | da6651524d68f48939dc66ea39b280fcc965e1b1 (patch) | |
tree | 84a05c7ca7954587f944a1d2ed248aff228b5a9d | |
parent | ac0075c2b510070cfd78cb108d50814335d15eb1 (diff) | |
download | freebsd-ports-da6651524d68f48939dc66ea39b280fcc965e1b1.zip |
- Mark MAKE_JOBS_UNSAFE: tries to use comm.h before it's generated
- Switch to options helpers
Approved by: portmgr blanket
-rw-r--r-- | sysutils/screen/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sysutils/screen/Makefile b/sysutils/screen/Makefile index c6f6588a8c22..a9fb7a829f17 100644 --- a/sysutils/screen/Makefile +++ b/sysutils/screen/Makefile @@ -35,6 +35,8 @@ SYSTEM_SCREENRC_DESC= Install system screenrc with helpful status line OPTIONS_SUB= +MAKE_JOBS_UNSAFE= yes + USES= gmake cpe CPE_VENDOR= gnu @@ -81,12 +83,10 @@ post-patch: # Choose sockets if you don't know what the difference is. # Choose named pipes if your environment is heterogeneous, # using both screen 4.0.3 and 4.2.1. -.if ${PORT_OPTIONS:MNAMED_PIPES} # Bug 191017 -post-configure: +post-configure-NAMED_PIPES-on: @${ECHO_CMD} '#define NAMEDPIPE 1' >> ${WRKSRC}/config.h @${ECHO_CMD} User selected named pipes override set. -.endif ETCDIR?= ${PREFIX}/etc |