diff options
author | marcus <marcus@FreeBSD.org> | 2005-05-10 07:54:51 +0800 |
---|---|---|
committer | marcus <marcus@FreeBSD.org> | 2005-05-10 07:54:51 +0800 |
commit | ffdb0df697b623650b74d6e860bb60ec742b89de (patch) | |
tree | ddd553ed9c27794bae151728a0c2c1e938e25a47 /devel/gamin | |
parent | 1f5b8984ee74fdce42763bd8f3f8db0457002f42 (diff) | |
download | freebsd-ports-gnome-ffdb0df697b623650b74d6e860bb60ec742b89de.tar.gz freebsd-ports-gnome-ffdb0df697b623650b74d6e860bb60ec742b89de.tar.zst freebsd-ports-gnome-ffdb0df697b623650b74d6e860bb60ec742b89de.zip |
Only declare the tests and post-install targets if we aren't in a slave
port. This fixes the py-gamin slave build.
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> |