pkgsrc-Changes-HG archive

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

[pkgsrc/trunk]: pkgsrc/mk/build The build target needs to be barrier aware ev...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/45b405b768fe
branches:  trunk
changeset: 515738:45b405b768fe
user:      seb <seb%pkgsrc.org@localhost>
date:      Fri Jul 07 13:06:45 2006 +0000

description:
The build target needs to be barrier aware even in the NO_BUILD case.

Without this a straight make fails in pkgsrc/pkgtools/pkg_comp.

diffstat:

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

diffs (21 lines):

diff -r 4ec178b55c55 -r 45b405b768fe mk/build/bsd.build.mk
--- a/mk/build/bsd.build.mk     Fri Jul 07 12:30:56 2006 +0000
+++ b/mk/build/bsd.build.mk     Fri Jul 07 13:06:45 2006 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: bsd.build.mk,v 1.5 2006/07/06 22:29:52 jlam Exp $
+# $NetBSD: bsd.build.mk,v 1.6 2006/07/07 13:06:45 seb Exp $
 #
 # This Makefile fragment is included by bsd.pkg.mk and provides all
 # variables and targets related to building sources for a package.
@@ -28,8 +28,10 @@
 .  if exists(${_BUILD_COOKIE})
 build:
        @${DO_NADA}
+.  elif exists(${_BARRIER_COOKIE})
+build: configure build-cookie pkginstall
 .  else
-build: configure build-cookie pkginstall
+build: barrier
 .  endif
 .endif
 



Home | Main Index | Thread Index | Old Index