pkgsrc-Changes-HG archive

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

[pkgsrc/trunk]: pkgsrc/mk Reverted the change from revision 1.1710, which sor...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/b900ed729a35
branches:  trunk
changeset: 498172:b900ed729a35
user:      rillig <rillig%pkgsrc.org@localhost>
date:      Sun Aug 14 19:52:26 2005 +0000

description:
Reverted the change from revision 1.1710, which sorted all DEPENDS and
BUILD_DEPENDS alphabetically. Some packages depend on the
first-come-first-serve order.

diffstat:

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

diffs (24 lines):

diff -r 894c30b7d33b -r b900ed729a35 mk/bsd.pkg.mk
--- a/mk/bsd.pkg.mk     Sun Aug 14 18:49:56 2005 +0000
+++ b/mk/bsd.pkg.mk     Sun Aug 14 19:52:26 2005 +0000
@@ -1,4 +1,4 @@
-#      $NetBSD: bsd.pkg.mk,v 1.1713 2005/08/14 17:26:13 kristerw Exp $
+#      $NetBSD: bsd.pkg.mk,v 1.1714 2005/08/14 19:52:26 rillig Exp $
 #
 # This file is in the public domain.
 #
@@ -3603,13 +3603,12 @@
 FATAL_OBJECT_FMT_SKEW?= yes
 WARN_NO_OBJECT_FMT?= yes
 
-_DEPENDS_AND_BUILD_DEPENDS=    ${DEPENDS} ${BUILD_DEPENDS}
 install-depends: pre-install-depends
 .  if !empty(DEPENDS) || !empty(BUILD_DEPENDS)
 .    if defined(NO_DEPENDS)
        @${DO_NADA}
 .    else      # !DEPENDS
-.      for dep in ${_DEPENDS_AND_BUILD_DEPENDS:O}
+.      for dep in ${DEPENDS} ${BUILD_DEPENDS}
        ${_PKG_SILENT}${_PKG_DEBUG}                                     \
        pkg="${dep:C/:.*//}";                                           \
        dir="${dep:C/[^:]*://:C/:.*$//}";                               \



Home | Main Index | Thread Index | Old Index