diff options
author | rillig <rillig@pkgsrc.org> | 2007-11-07 07:05:15 +0000 |
---|---|---|
committer | rillig <rillig@pkgsrc.org> | 2007-11-07 07:05:15 +0000 |
commit | 71b501b8f6047086d8e7238c42ed95e158c9402c (patch) | |
tree | d44fa5ea795e11941195899d27d4bba3f5a26744 /lang | |
parent | 84cf2d0fcd2801b014f4f3c93f777887ebdb2d8a (diff) | |
download | pkgsrc-71b501b8f6047086d8e7238c42ed95e158c9402c.tar.gz |
Don't hide user-defined commands.
Diffstat (limited to 'lang')
-rw-r--r-- | lang/onyx/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lang/onyx/Makefile b/lang/onyx/Makefile index 682228da6e5..ed763c9f3a8 100644 --- a/lang/onyx/Makefile +++ b/lang/onyx/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.20 2006/10/05 16:07:58 joerg Exp $ +# $NetBSD: Makefile,v 1.21 2007/11/07 07:05:15 rillig Exp $ DISTNAME= onyx-${VERS} PKGREVISION= 2 @@ -24,13 +24,13 @@ VERS= 5.1.1 PLIST_SUBST+= VERS=${VERS:Q} do-build: - @(cd ${WRKSRC}; ${SETENV} ${MAKE_ENV} cook) + cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} cook do-install: - @(cd ${WRKSRC}; ${SETENV} ${MAKE_ENV} cook install) + cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} cook install post-install: - @strip ${PREFIX}/bin/onyx + strip ${PREFIX}/bin/onyx .include "../../devel/pcre/buildlink3.mk" .include "../../mk/pthread.buildlink3.mk" |