diff options
author | Clifford Wolf <clifford@clifford.at> | 2015-12-15 19:54:07 +0100 |
---|---|---|
committer | Clifford Wolf <clifford@clifford.at> | 2015-12-15 19:54:07 +0100 |
commit | 9df59f0c2cd0ecdbcc3597077c751f6b6f83d298 (patch) | |
tree | ae7451067a1671077ac6c467ac4fd52e464cb771 /manual | |
parent | 494e5f24f939e3bae4230084ece432304a7ba73a (diff) | |
parent | 7948156abf75904e305e9063763b7509b2139862 (diff) | |
download | yosys-9df59f0c2cd0ecdbcc3597077c751f6b6f83d298.tar.gz yosys-9df59f0c2cd0ecdbcc3597077c751f6b6f83d298.tar.bz2 yosys-9df59f0c2cd0ecdbcc3597077c751f6b6f83d298.zip |
Merge pull request #110 from scanlime/master
Trivial changes to fix Mac OS build
Diffstat (limited to 'manual')
-rwxr-xr-x | manual/clean.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/manual/clean.sh b/manual/clean.sh index f4a2ea83a..11c2e7bf2 100755 --- a/manual/clean.sh +++ b/manual/clean.sh @@ -1,2 +1,2 @@ #!/bin/bash -for f in $( find . -name .gitignore ); do sed -re "s,^,find ${f%.gitignore} -name ',; s,$,' | xargs -r rm -f,;" $f; done | bash -v +for f in $( find . -name .gitignore ); do sed -re "s,^,find ${f%.gitignore} -name ',; s,$,' | xargs rm -f,;" $f; done | bash -v |