diff options
author | Kevin Mills <43148204+sifivekevin@users.noreply.github.com> | 2019-01-31 12:16:09 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-01-31 12:16:09 -0800 |
commit | fcbe8509cdef170ce45b882ded3febf7c085d85b (patch) | |
tree | 7408fe24b54279118c5434ccf79f20b953ee53e8 /scripts | |
parent | 89d973abd94faf74d7486a6c5e044935f5d63e9d (diff) | |
parent | e2dd55eb628344ff3be19812278728d727c5b235 (diff) |
Merge pull request #165 from sifive/target-argument
Add TARGET as a synonym for BOARD
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 |