]> git.donarmstrong.com Git - lilypond.git/commitdiff
Remove bashisms from some build scripts
authorDavid Kastrup <dak@gnu.org>
Tue, 18 Jun 2013 11:56:31 +0000 (13:56 +0200)
committerDavid Kastrup <dak@gnu.org>
Tue, 18 Jun 2013 11:56:31 +0000 (13:56 +0200)
test uses = and not == for comparisons.

scripts/auxiliar/build-coverage.sh
scripts/auxiliar/build-profile.sh

index d774bee3fdee601350f379418db61543fc69e19b..4c15937c7c4555f1a79322682da33308e14415b9 100755 (executable)
@@ -1,6 +1,6 @@
 #!/bin/sh
 
-if test "$1" == "--fresh"; then
+if test "$1" = "--fresh"; then
   fresh=yes
 fi
 
index da110c79160add693c614bb6dd12ae8871e5e9b1..b6c2bc77f614cb9f4e305b4e7ce8d8c44b929a50 100755 (executable)
@@ -1,6 +1,6 @@
 #!/bin/sh
 
-if test "$1" == "--fresh"; then
+if test "$1" = "--fresh"; then
   fresh=yes
 fi