summaryrefslogtreecommitdiff
path: root/graphics
diff options
context:
space:
mode:
authoragc <agc>2001-11-23 14:38:27 +0000
committeragc <agc>2001-11-23 14:38:27 +0000
commit267f9e6fc33b8b662b5358a35e94dc8ed5c74aa5 (patch)
tree136b7fd71be94bbec8a8c9d915cdb359f334a38b /graphics
parent584379edb514eb1fc1748ad12efba89336122a72 (diff)
downloadpkgsrc-267f9e6fc33b8b662b5358a35e94dc8ed5c74aa5.tar.gz
Pass the environment down through the custom do-build and do-install
targets, otherwise the LIBTOOL definition doesn't get passed on.
Diffstat (limited to 'graphics')
-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"