summaryrefslogtreecommitdiff
path: root/mk/build
diff options
context:
space:
mode:
authorrillig <rillig>2007-12-01 11:11:53 +0000
committerrillig <rillig>2007-12-01 11:11:53 +0000
commit9a857c46f342ecb514056f8eb8eaec07a7523cac (patch)
treeb0a5e8fd72c608ea0fcac2f51ce0c2e4e43bc78e /mk/build
parenta1d732ce11a869431f8958500c64c068f823420e (diff)
downloadpkgsrc-9a857c46f342ecb514056f8eb8eaec07a7523cac.tar.gz
Removed _INTERACTIVE_COOKIE, after asking on tech-pkg if anyone needs
it. It had only been used to change the "nerrors" variable in bulk builds, but this variable is not used further anyway.
Diffstat (limited to 'mk/build')
-rw-r--r--mk/build/build.mk5
-rw-r--r--mk/build/test.mk5
2 files changed, 4 insertions, 6 deletions
diff --git a/mk/build/build.mk b/mk/build/build.mk
index b8b15cb02d3..5ec43257f52 100644
--- a/mk/build/build.mk
+++ b/mk/build/build.mk
@@ -1,4 +1,4 @@
-# $NetBSD: build.mk,v 1.14 2007/11/30 18:54:40 rillig Exp $
+# $NetBSD: build.mk,v 1.15 2007/12/01 11:11:54 rillig Exp $
#
# This file defines what happens in the build phase, excluding the
# self-test, which is defined in test.mk.
@@ -125,8 +125,7 @@ build-check-interactive:
@${ERROR_MSG} "The build stage of this package requires user interaction"
@${ERROR_MSG} "Please build manually with:"
@${ERROR_MSG} " \"cd ${.CURDIR} && ${MAKE} build\""
- @${TOUCH} ${_INTERACTIVE_COOKIE}
- @${FALSE}
+ ${RUN} ${FALSE}
.else
@${DO_NADA}
.endif
diff --git a/mk/build/test.mk b/mk/build/test.mk
index d66ad8256d4..a0f31ea7396 100644
--- a/mk/build/test.mk
+++ b/mk/build/test.mk
@@ -1,4 +1,4 @@
-# $NetBSD: test.mk,v 1.12 2007/03/15 22:54:24 rillig Exp $
+# $NetBSD: test.mk,v 1.13 2007/12/01 11:11:54 rillig Exp $
#
# After the "build" phase, many packages provide some sort of self-test
# that can be run on the not-yet installed package. To enable these
@@ -112,8 +112,7 @@ test-check-interactive:
@${ERROR_MSG} "The test stage of this package requires user interaction"
@${ERROR_MSG} "Please test manually with:"
@${ERROR_MSG} " \"cd ${.CURDIR} && ${MAKE} test\""
- @${TOUCH} ${_INTERACTIVE_COOKIE}
- @${FALSE}
+ ${RUN} ${FALSE}
.else
@${DO_NADA}
.endif