summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorKevin Mills <kevin.mills@sifive.com>2019-01-29 07:23:01 -0800
committerKevin Mills <kevin.mills@sifive.com>2019-01-29 07:23:01 -0800
commit11658f2830316dc9afa9675c4bdec6af8f501a33 (patch)
treea4cb104a92f11279217be9a6f39e20c72638600b /Makefile
parentc5277fc5fbebcacbe7f927c5914be485d6f76ccd (diff)
Remove '-r' from sed command (not required and does not work on MacOS). Remove 'echo Done', no longer needed.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 1 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 13810dc..18f3345 100644
--- a/Makefile
+++ b/Makefile
@@ -119,10 +119,9 @@ list-boards:
# MEE programs are any submodules in the software folder
list-programs:
- @echo program-list: $(shell grep -o '= software/.*$$' .gitmodules | sed -r 's/.*\///')
+ @echo program-list: $(shell grep -o '= software/.*$$' .gitmodules | sed 's/.*\///')
list-options: list-programs list-boards
- @echo done
endif