diff options
author | Scott Murray <scott.murray@konsulko.com> | 2020-06-15 18:50:47 -0400 |
---|---|---|
committer | Scott Murray <scott.murray@konsulko.com> | 2020-06-15 18:52:51 -0400 |
commit | 7abf6e771dbafe467379085bab82ce5c37b591ee (patch) | |
tree | ff53efa358759a76e7f9058d9dec68e4b60d1e61 /autobuild/agl | |
parent | 401fb20ea833ac38cb050c2784511438e0bbc7a0 (diff) |
Update autobuild scriptsneedlefish_13.93.0needlefish/13.93.0marlin_12.93.0marlin_12.92.0marlin_12.91.0marlin_12.90.1marlin_12.90.0marlin/12.93.0marlin/12.92.0marlin/12.91.0marlin/12.90.1marlin/12.90.0lamprey_11.92.0lamprey_11.91.0lamprey/11.92.0lamprey/11.91.0koi_10.93.0koi_10.92.0koi_10.91.0koi/10.93.0koi/10.92.0koi/10.91.0jellyfish_9.99.4jellyfish_9.99.3jellyfish_9.99.2jellyfish_9.99.1jellyfish/9.99.4jellyfish/9.99.3jellyfish/9.99.2jellyfish/9.99.19.99.49.99.39.99.29.99.113.93.012.93.012.92.012.91.012.90.112.90.011.92.011.91.010.93.010.92.010.91.0
Update autobuild scripts with reworked version that fixes building
outside of the source tree. There are only small changes compared
to the WIP version that was committed to fix SPEC-3392.
Bug-AGL: SPEC-2049, SPEC-3300
Signed-off-by: Scott Murray <scott.murray@konsulko.com>
Change-Id: Iac529e39545861b90b963c7ec618fa5b88516834
Diffstat (limited to 'autobuild/agl')
-rwxr-xr-x | autobuild/agl/autobuild | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/autobuild/agl/autobuild b/autobuild/agl/autobuild index 8ec476a..16181b8 100755 --- a/autobuild/agl/autobuild +++ b/autobuild/agl/autobuild @@ -25,9 +25,9 @@ ROOT_DIR := $(abspath $(dir $(THISFILE))/../..) # type variable (e.g. BUILD_DIR_DEBUG) may also need to be specified # to yield the desired output hierarchy. BUILD_DIR = $(ROOT_DIR)/build -BUILD_DIR_DEBUG := $(abspath $(BUILD_DIR)/../build-debug) -BUILD_DIR_TEST := $(abspath $(BUILD_DIR)/../build-test) -BUILD_DIR_COVERAGE := $(abspath $(BUILD_DIR)/../build-coverage) +BUILD_DIR_DEBUG = $(abspath $(BUILD_DIR)/../build-debug) +BUILD_DIR_TEST = $(abspath $(BUILD_DIR)/../build-test) +BUILD_DIR_COVERAGE = $(abspath $(BUILD_DIR)/../build-coverage) # Output directory variable for use in pattern rules. # This is intended for internal use only, hence the explicit override @@ -44,7 +44,7 @@ BUILD_TYPE = RELEASE .PHONY: clean clean-release clean-debug clean-test clean-coverage clean-all .PHONY: configure configure-release configure-debug configure-test configure-coverage .PHONY: build build-release build-debug build-test build-coverage build-all -.PHONY: package package-debug package-test package-coverage package-all +.PHONY: package package-release package-debug package-test package-coverage package-all help: @echo "List of targets available:" |