diff options
author | Joe Marcus Clarke <marcus@FreeBSD.org> | 2005-05-09 23:54:51 +0000 |
---|---|---|
committer | Joe Marcus Clarke <marcus@FreeBSD.org> | 2005-05-09 23:54:51 +0000 |
commit | 7488473e0b35af7ed4828cb2e264159fd0dceaa3 (patch) | |
tree | 542e11c71291704e86df9ca2ac23f0c0e6edddf2 /devel/gamin | |
parent | 88edf9ec086b6b9af1ca607ab6cc4f7175c2fb73 (diff) |
Only declare the tests and post-install targets if we aren't in a slave
port. This fixes the py-gamin slave build.
Notes
Notes:
svn path=/head/; revision=134963
Diffstat (limited to 'devel/gamin')
-rw-r--r-- | devel/gamin/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/devel/gamin/Makefile b/devel/gamin/Makefile index e2691197d174..3eaf490d3aa1 100644 --- a/devel/gamin/Makefile +++ b/devel/gamin/Makefile @@ -33,6 +33,7 @@ USE_INC_LIBTOOL_VER=15 post-patch: @${FIND} ${WRKSRC} -type f | ${XARGS} ${TOUCH} -f +.if !defined(GAMIN_SLAVE) tests: build @${ECHO_MSG} "===> Running gamin regression tests" @(cd ${WRKSRC}/tests && ${SETENV} ${MAKE_ENV} ${GMAKE} ${MAKE_FLAGS} \ @@ -40,5 +41,6 @@ tests: build post-install: @${CAT} ${PKGMESSAGE} +.endif .include <bsd.port.mk> |