summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoragc <agc>2001-11-23 14:38:27 +0000
committeragc <agc>2001-11-23 14:38:27 +0000
commit174499e5ed8672d1cdefa997b452047fa356a5f1 (patch)
tree136b7fd71be94bbec8a8c9d915cdb359f334a38b
parent25a54c599a41ccc429dfb2468d19bebc6a7d80cf (diff)
downloadpkgsrc-174499e5ed8672d1cdefa997b452047fa356a5f1.tar.gz
Pass the environment down through the custom do-build and do-install
targets, otherwise the LIBTOOL definition doesn't get passed on.
-rw-r--r--graphics/libflash/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/graphics/libflash/Makefile b/graphics/libflash/Makefile
index 50446c638d2..73d27b6163f 100644
--- a/graphics/libflash/Makefile
+++ b/graphics/libflash/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.2 2001/02/16 15:22:25 wiz Exp $
+# $NetBSD: Makefile,v 1.3 2001/11/23 14:38:27 agc Exp $
#
PKGNAME= lib${DISTNAME}
@@ -10,9 +10,9 @@ DEPENDS+= jpeg-6b:../../graphics/jpeg
USE_LIBTOOL= yes
do-build:
- cd ${WRKSRC}/Lib && make
+ cd ${WRKSRC}/Lib && ${SETENV} ${MAKE_ENV} ${MAKE}
do-install:
- cd ${WRKSRC}/Lib && make install
+ cd ${WRKSRC}/Lib && ${SETENV} ${MAKE_ENV} ${MAKE} install
.include "Makefile.common"