diff options
author | jlam <jlam> | 2006-07-07 13:39:52 +0000 |
---|---|---|
committer | jlam <jlam> | 2006-07-07 13:39:52 +0000 |
commit | 1c44fe622f3d6837a18c50688aaba9f562a9d261 (patch) | |
tree | f65fc45582c297611556f7ab1df2e6daa55983ff /mk/configure | |
parent | daa322993abcdb5770ca3e48f96d5182eda858d8 (diff) | |
download | pkgsrc-1c44fe622f3d6837a18c50688aaba9f562a9d261.tar.gz |
Make configure, install, and package barrier-aware even if NO_CONFIGURE,
NO_INSTALL, or NO_PACKAGE are defined.
Diffstat (limited to 'mk/configure')
-rw-r--r-- | mk/configure/bsd.configure.mk | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/mk/configure/bsd.configure.mk b/mk/configure/bsd.configure.mk index fba595a90bc..46da9d1bcff 100644 --- a/mk/configure/bsd.configure.mk +++ b/mk/configure/bsd.configure.mk @@ -1,4 +1,4 @@ -# $NetBSD: bsd.configure.mk,v 1.4 2006/07/06 22:29:52 jlam Exp $ +# $NetBSD: bsd.configure.mk,v 1.5 2006/07/07 13:39:52 jlam Exp $ # # This Makefile fragment is included by bsd.pkg.mk and provides all # variables and targets related to configuring packages for building. @@ -26,8 +26,10 @@ _CONFIGURE_COOKIE= ${WRKDIR}/.configure_done . if exists(${_CONFIGURE_COOKIE}) configure: @${DO_NADA} -. else +. elif exists(${_BARRIER_COOKIE}) configure: wrapper configure-cookie +. else +configure: barrier . endif .endif |