diff options
author | Mark Ferrell <major@homeonderanged.org> | 2014-04-15 07:21:17 -0700 |
---|---|---|
committer | Mark Ferrell <major@homeonderanged.org> | 2014-04-15 07:24:19 -0700 |
commit | 9d78746c742d2573c09bf420b2d06ff092e1ce88 (patch) | |
tree | 8a4c137f9de575e433bd1f2b46ea46d842a2c08a | |
parent | 0a881fe81e38f24f3b71fb06a92bd73dcc8d9b30 (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-x | build | 2 | ||||
-rwxr-xr-x | libexec/build-make | 2 | ||||
-rwxr-xr-x | libexec/build-query | 2 |
3 files changed, 3 insertions, 3 deletions
@@ -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}" |