pkgsrc-Changes-HG archive

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

[pkgsrc/trunk]: pkgsrc/mk Now that all packages using CONFIGURE_DIRS have bee...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/97b737c9fca7
branches:  trunk
changeset: 502399:97b737c9fca7
user:      rillig <rillig%pkgsrc.org@localhost>
date:      Fri Nov 04 11:27:41 2005 +0000

description:
Now that all packages using CONFIGURE_DIRS have been checked (and
modified) to not rely on this change, the default value of BUILD_DIRS
can be set to ${CONFIGURE_DIRS} instead of ${WRKSRC}. There are far more
packages setting CONFIGURE_DIRS and BUILD_DIRS to the same value than
there are packages needing different values, so this default seems more
reasonable. Now the default values are:

CONFIGURE_DIRS?=        ${WRKSRC}               # (unchanged)
BUILD_DIRS?=            ${CONFIGURE_DIRS}
INSTALL_DIRS?=          ${BUILD_DIRS}           # (unchanged)

diffstat:

 mk/bsd.pkg.mk |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (18 lines):

diff -r 959cf40750db -r 97b737c9fca7 mk/bsd.pkg.mk
--- a/mk/bsd.pkg.mk     Fri Nov 04 11:22:24 2005 +0000
+++ b/mk/bsd.pkg.mk     Fri Nov 04 11:27:41 2005 +0000
@@ -1,4 +1,4 @@
-#      $NetBSD: bsd.pkg.mk,v 1.1738 2005/11/02 18:32:19 rillig Exp $
+#      $NetBSD: bsd.pkg.mk,v 1.1739 2005/11/04 11:27:41 rillig Exp $
 #
 # This file is in the public domain.
 #
@@ -1918,7 +1918,7 @@
 
 # Build
 
-BUILD_DIRS?=           ${WRKSRC}
+BUILD_DIRS?=           ${CONFIGURE_DIRS}
 BUILD_MAKE_FLAGS?=     ${MAKE_FLAGS}
 
 .PHONY: do-build



Home | Main Index | Thread Index | Old Index