diff options
author | grant <grant@pkgsrc.org> | 2004-02-03 01:43:32 +0000 |
---|---|---|
committer | grant <grant@pkgsrc.org> | 2004-02-03 01:43:32 +0000 |
commit | 35d3d3e7a2e401fefb2b10b96e41302b7515dab0 (patch) | |
tree | cdd522bb4e2999c93c7e9e9eb362d0dbada1df0c /devel | |
parent | b12df170856de7fba60c7d5be98b9bdf1d3ac30d (diff) | |
download | pkgsrc-35d3d3e7a2e401fefb2b10b96e41302b7515dab0.tar.gz |
run ${MAKE_PROGRAM}, not ${MAKE}, and set the environment
appropriately.
Diffstat (limited to 'devel')
-rw-r--r-- | devel/ffcall/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/devel/ffcall/Makefile b/devel/ffcall/Makefile index 53ac5fde6b2..7397d7012f5 100644 --- a/devel/ffcall/Makefile +++ b/devel/ffcall/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.14 2003/07/21 16:43:20 martti Exp $ +# $NetBSD: Makefile,v 1.15 2004/02/03 01:43:32 grant Exp $ DISTNAME= ffcall-1.8d PKGNAME= ffcall-1.8.4 @@ -40,6 +40,6 @@ post-patch: # Run the supplied tests to sanity check everything # post-build: - cd ${WRKSRC} && ${MAKE} check + cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${MAKE_PROGRAM} check .include "../../mk/bsd.pkg.mk" |