pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/mk/compiler For some reason EVAL_PREFIX is not properl...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/4a514fba7ab7
branches:  trunk
changeset: 483695:4a514fba7ab7
user:      tv <tv%pkgsrc.org@localhost>
date:      Wed Nov 17 17:18:33 2004 +0000

description:
For some reason EVAL_PREFIX is not properly using the _DEFAULT values, so
re-add the ?= assignments.  (Will be fixed properly later.)

diffstat:

 mk/compiler/ccache.mk |  3 ++-
 mk/compiler/distcc.mk |  3 ++-
 2 files changed, 4 insertions(+), 2 deletions(-)

diffs (34 lines):

diff -r 39420917c10b -r 4a514fba7ab7 mk/compiler/ccache.mk
--- a/mk/compiler/ccache.mk     Wed Nov 17 17:14:43 2004 +0000
+++ b/mk/compiler/ccache.mk     Wed Nov 17 17:18:33 2004 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: ccache.mk,v 1.19 2004/11/17 17:14:43 tv Exp $
+# $NetBSD: ccache.mk,v 1.20 2004/11/17 17:18:33 tv Exp $
 
 .if !defined(COMPILER_CCACHE_MK)
 COMPILER_CCACHE_MK=    defined
@@ -34,6 +34,7 @@
 .if !empty(_USE_CCACHE:M[yY][eE][sS])
 EVAL_PREFIX+=          _CCACHEBASE=ccache
 _CCACHEBASE_DEFAULT=   ${LOCALBASE}
+_CCACHEBASE?=          ${LOCALBASE}
 
 _CCACHE_DIR=   ${WRKDIR}/.ccache
 _CCACHE_LINKS= # empty
diff -r 39420917c10b -r 4a514fba7ab7 mk/compiler/distcc.mk
--- a/mk/compiler/distcc.mk     Wed Nov 17 17:14:43 2004 +0000
+++ b/mk/compiler/distcc.mk     Wed Nov 17 17:18:33 2004 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: distcc.mk,v 1.20 2004/11/17 17:14:43 tv Exp $
+# $NetBSD: distcc.mk,v 1.21 2004/11/17 17:18:33 tv Exp $
 
 .if !defined(COMPILER_DISTCC_MK)
 COMPILER_DISTCC_MK=    defined
@@ -34,6 +34,7 @@
 .if !empty(_USE_DISTCC:M[yY][eE][sS])
 EVAL_PREFIX+=          _DISTCCBASE=distcc
 _DISTCCBASE_DEFAULT=   ${LOCALBASE}
+_DISTCCBASE?=          ${LOCALBASE}
 
 _DISTCC_DIR=   ${WRKDIR}/.distcc
 _DISTCC_LINKS= # empty



Home | Main Index | Thread Index | Old Index