aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Ferrell <major@homeonderanged.org>2014-04-15 07:21:17 -0700
committerMark Ferrell <major@homeonderanged.org>2014-04-15 07:24:19 -0700
commit9d78746c742d2573c09bf420b2d06ff092e1ce88 (patch)
tree8a4c137f9de575e433bd1f2b46ea46d842a2c08a
parent0a881fe81e38f24f3b71fb06a92bd73dcc8d9b30 (diff)
We no longer support the idea of a PROJECT
* The original idea behind the PROJECT variable is all but gone, and really .. it wasn't very good to begin with. Remove any remaining references to it.
-rwxr-xr-xbuild2
-rwxr-xr-xlibexec/build-make2
-rwxr-xr-xlibexec/build-query2
3 files changed, 3 insertions, 3 deletions
diff --git a/build b/build
index a5d1a7a..7f013b6 100755
--- a/build
+++ b/build
@@ -100,7 +100,7 @@ parse_pkg_name()
if [ "2${1#*/}" != "2${1}" ]; then
printf '%s' "${1}"
else
- printf '%s' "${PROJECT}/${1}"
+ printf '%s' "${1}/all"
fi
}
diff --git a/libexec/build-make b/libexec/build-make
index 515d496..8a4bf9c 100755
--- a/libexec/build-make
+++ b/libexec/build-make
@@ -30,7 +30,7 @@ build_make()
done
# If no target is given, then base our target on the current working
- # directory, falling back to "${PROJECT}/all" as our default.
+ # directory, falling back to ${TARGET} (or all/all)
if test "$#" -eq '0'; then
case "${BUILDER_MAKE_ACTION}" in
(*clean) NAME='all/all';;
diff --git a/libexec/build-query b/libexec/build-query
index ec02ef6..b3e23c5 100755
--- a/libexec/build-query
+++ b/libexec/build-query
@@ -255,7 +255,7 @@ case "${QUERY_ACTION}" in
# are already set in their environment.
(environ)
cat<<-EOF
- PROJECT="${PROJECT}"
+ TARGET="${TARGET}"
TOPDIR="${BUILDER_TOPDIR}"
SYSROOT="${SYSROOT}"
CBUILD="${CBUILD}"