diff options
author | danilo <danilo@FreeBSD.org> | 2014-08-28 22:50:29 +0800 |
---|---|---|
committer | danilo <danilo@FreeBSD.org> | 2014-08-28 22:50:29 +0800 |
commit | d85bd274dd7c7a32eb95817f8d96e530ef153b56 (patch) | |
tree | f3efd704111521c4a525b0fe915b109165e713f0 | |
parent | 8ab41b2459b226f1a19275f3755a2ca53c33a61f (diff) | |
download | freebsd-ports-gnome-d85bd274dd7c7a32eb95817f8d96e530ef153b56.tar.gz freebsd-ports-gnome-d85bd274dd7c7a32eb95817f8d96e530ef153b56.tar.zst freebsd-ports-gnome-d85bd274dd7c7a32eb95817f8d96e530ef153b56.zip |
- Ignore an error caused by a warning
-rw-r--r-- | lang/nwcc/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lang/nwcc/Makefile b/lang/nwcc/Makefile index 98c7e50bdfdf..14c86d886866 100644 --- a/lang/nwcc/Makefile +++ b/lang/nwcc/Makefile @@ -16,7 +16,7 @@ HAS_CONFIGURE= yes CONFIGURE_ARGS= --installprefix=${PREFIX} ALL_TARGET= -post-build: - cd ${WRKSRC} ; ${MAKE} test +post-patch: + @${REINPLACE_CMD} -e 's|./nwcc|-./nwcc|' ${WRKSRC}/Makefile.skel .include <bsd.port.mk> |