diff options
author | jlam <jlam@pkgsrc.org> | 2006-04-04 18:07:16 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2006-04-04 18:07:16 +0000 |
commit | 0e75430a3dc4283ccdb6d1bedbfa24108807b549 (patch) | |
tree | e435816da1a247183864f0fb55a6e930bd8907d3 /emulators | |
parent | 095afb2bfac350826ba3b5c2cd3ebb0843636582 (diff) | |
download | pkgsrc-0e75430a3dc4283ccdb6d1bedbfa24108807b549.tar.gz |
INSTALL_MAKE_FLAGS doesn't append to MAKE_FLAGS, it replaces it. Make
sure that we preserve any other MAKE_FLAGS when setting INSTALL_MAKE_FLAGS.
Diffstat (limited to 'emulators')
-rw-r--r-- | emulators/vmips/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/emulators/vmips/Makefile b/emulators/vmips/Makefile index 859f3c29f81..62a9e27e762 100644 --- a/emulators/vmips/Makefile +++ b/emulators/vmips/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.2 2005/12/29 06:21:40 jlam Exp $ +# $NetBSD: Makefile,v 1.3 2006/04/04 18:07:16 jlam Exp $ # DISTNAME= vmips-1.3.1 @@ -12,7 +12,7 @@ COMMENT= MIPS R3000 emulator USE_PKGLOCALEDIR= yes GNU_CONFIGURE= yes INSTALLATION_DIRS= bin include/vmips man/man1 share/vmips share/examples/vmips -INSTALL_MAKE_FLAGS+= sysconfdir=${EGDIR:Q} +INSTALL_MAKE_FLAGS+= ${MAKE_FLAGS} sysconfdir=${EGDIR:Q} EGDIR= ${PREFIX}/share/examples/vmips CONF_FILES= ${EGDIR}/vmipsrc ${PKG_SYSCONFDIR}/vmipsrc |