diff options
author | Kevin Mills <43148204+sifivekevin@users.noreply.github.com> | 2019-01-29 09:36:29 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-01-29 09:36:29 -0800 |
commit | c5846a3635ba160d39a620e527d2ec4715b1c59a (patch) | |
tree | a4cb104a92f11279217be9a6f39e20c72638600b | |
parent | c5277fc5fbebcacbe7f927c5914be485d6f76ccd (diff) | |
parent | 11658f2830316dc9afa9675c4bdec6af8f501a33 (diff) |
Merge pull request #161 from sifive/standalone-makefile-updates
Fix list-programs on MacOS
-rw-r--r-- | Makefile | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -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 |