diff options
author | tnn <tnn> | 2015-11-02 12:02:23 +0000 |
---|---|---|
committer | tnn <tnn> | 2015-11-02 12:02:23 +0000 |
commit | 38c6d0b2ae4068d3eeca8fe04ba6ff883fe13c00 (patch) | |
tree | e685e97b922e8bf3eca2d12beefb274ea600d466 | |
parent | 00db6ce6cebd7fe0e16c423bea34033d103049c7 (diff) | |
download | pkgsrc-38c6d0b2ae4068d3eeca8fe04ba6ff883fe13c00.tar.gz |
extraneous parenthesis crept in in Darwin conditional
-rw-r--r-- | comms/asterisk/Makefile | 4 | ||||
-rw-r--r-- | comms/asterisk18/Makefile | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/comms/asterisk/Makefile b/comms/asterisk/Makefile index b4f190a0151..409c070f9b6 100644 --- a/comms/asterisk/Makefile +++ b/comms/asterisk/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.131 2015/11/02 00:34:04 tnn Exp $ +# $NetBSD: Makefile,v 1.132 2015/11/02 12:02:23 tnn Exp $ # # NOTE: when updating this package, there are two places that sound # tarballs need to be checked @@ -225,7 +225,7 @@ PTHREAD_OPTS+= require native post-patch: .if ${OPSYS} == "Darwin" . for dir in ${COMPILER_INCLUDE_DIRS} -. if exists(${dir}/sys/poll.h)) +. if exists(${dir}/sys/poll.h) ${ECHO} "#include <sys/poll.h>" > ${WRKSRC}/include/asterisk/poll-compat.h . endif . endfor diff --git a/comms/asterisk18/Makefile b/comms/asterisk18/Makefile index b9174fce350..c0b524cd2f9 100644 --- a/comms/asterisk18/Makefile +++ b/comms/asterisk18/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.102 2015/11/02 00:34:04 tnn Exp $ +# $NetBSD: Makefile,v 1.103 2015/11/02 12:02:23 tnn Exp $ # # NOTE: when updating this package, there are two places that sound # tarballs need to be checked @@ -204,7 +204,7 @@ PTHREAD_OPTS+= require native post-patch: .if ${OPSYS} == "Darwin" . for dir in ${COMPILER_INCLUDE_DIRS} -. if exists(${dir}/sys/poll.h)) +. if exists(${dir}/sys/poll.h) ${ECHO} "#include <sys/poll.h>" > ${WRKSRC}/include/asterisk/poll-compat.h . endif . endfor |