diff options
author | joerg <joerg@pkgsrc.org> | 2014-12-10 23:21:40 +0000 |
---|---|---|
committer | joerg <joerg@pkgsrc.org> | 2014-12-10 23:21:40 +0000 |
commit | cd185556fa3642286d03aeef8f8c0c27c241d7d8 (patch) | |
tree | 59313803a8d68f69e4455d36c6b15d51faa586eb /cross | |
parent | 72605d9220a96127ecf405c238092189bc2712a3 (diff) | |
download | pkgsrc-cd185556fa3642286d03aeef8f8c0c27c241d7d8.tar.gz |
Use PREPEND_PATH here in place of explicit PATH manipulation.
Diffstat (limited to 'cross')
-rw-r--r-- | cross/mingw/Makefile.common | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cross/mingw/Makefile.common b/cross/mingw/Makefile.common index d276dedd652..95a1a607b7b 100644 --- a/cross/mingw/Makefile.common +++ b/cross/mingw/Makefile.common @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.common,v 1.1.1.1 2010/03/15 18:34:36 asau Exp $ +# $NetBSD: Makefile.common,v 1.2 2014/12/10 23:21:40 joerg Exp $ # # used by cross/mingw-gcc/buildlink3.mk # used by cross/mingw-binutils/Makefile @@ -16,7 +16,7 @@ PLIST_SUBST+= MINGW_TARGET=${MINGW_TARGET:Q} MAKE_ENV+= MINGW_TARGET=${MINGW_TARGET:Q} CONFIGURE_ENV+= MINGW_TARGET=${MINGW_TARGET:Q} -PATH:= ${CROSSBASE}/bin:${PATH} +PREPEND_PATH+= ${CROSSBASE}/bin .if defined(GNU_CONFIGURE) CONFIGURE_ARGS+= --prefix=${PREFIX:Q} |