diff options
author | Nathaniel Graff <nathaniel.graff@sifive.com> | 2019-01-30 10:43:21 -0800 |
---|---|---|
committer | Nathaniel Graff <nathaniel.graff@sifive.com> | 2019-01-31 10:15:07 -0800 |
commit | 30c7c5302eaedccd878cbdcf4caa950fe572d9d3 (patch) | |
tree | 9279b4561f7e2f03dc7e6a2aafe347b87efe324d /scripts | |
parent | 89d973abd94faf74d7486a6c5e044935f5d63e9d (diff) |
Add TARGET as a synonym for BOARD
Signed-off-by: Nathaniel Graff <nathaniel.graff@sifive.com>
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/standalone.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/standalone.mk b/scripts/standalone.mk index 244bb7c..a73093f 100644 --- a/scripts/standalone.mk +++ b/scripts/standalone.mk @@ -13,7 +13,7 @@ SRC_DIR ?= $(abspath src) # There must be a settings makefile fragment in the BSP's board directory. ifeq ($(wildcard $(BSP_DIR)/settings.mk),) -$(error Unable to find BSP for $(BOARD), expected to find $(BSP_DIR)/settings.mk) +$(error Unable to find BSP for $(TARGET), expected to find $(BSP_DIR)/settings.mk) endif # Include the BSP settings |