Use [ instead of [[ for portability.
This commit is contained in:
parent
f7b055100c
commit
7d79af602b
1 changed files with 1 additions and 1 deletions
2
Makefile
2
Makefile
|
@ -7,7 +7,7 @@ ext/digest/Makefile: ext/digest/extconf.rb
|
||||||
cd ext/digest && ruby extconf.rb
|
cd ext/digest && ruby extconf.rb
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
if [[ -f ext/digest/Makefile ]]; then make -C ext/digest clean; fi
|
if [ -f ext/digest/Makefile ]; then make -C ext/digest clean; fi
|
||||||
rm -f ext/digest/Makefile
|
rm -f ext/digest/Makefile
|
||||||
rm -f test/test_vectors.rb
|
rm -f test/test_vectors.rb
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue