Skip to content
This repository has been archived by the owner on Jul 3, 2024. It is now read-only.

Commit

Permalink
Merge pull request #227 from sifive/rel-fix
Browse files Browse the repository at this point in the history
Fix a minor cleanup miss
  • Loading branch information
nategraff-sifive authored Mar 29, 2019
2 parents 304acc9 + 0cd16b3 commit cebbb7c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -180,12 +180,12 @@ standalone: \

cp -r freedom-metal $</

find $</freedom-metal -name ".git*" | xargs rm
find $</freedom-metal -name ".git*" | xargs rm -rf

mkdir -p $</scripts
cp -r scripts/elf2hex $</scripts

find $</scripts/elf2hex -name ".git*" | xargs rm
find $</scripts/elf2hex -name ".git*" | xargs rm -rf

$(MAKE) -C $(SRC_DIR) clean
cp -r $(SRC_DIR)/* $</src/
Expand All @@ -211,7 +211,7 @@ standalone: \

cp -r freedom-metal $</

find $</freedom-metal -name ".git*" | xargs rm
find $</freedom-metal -name ".git*" | xargs rm -rf

$(MAKE) -C $(SRC_DIR) clean
cp -r $(SRC_DIR)/* $</src/
Expand Down

0 comments on commit cebbb7c

Please sign in to comment.