comparison configure.sh @ 243:619febca2803

configure.sh: the correct form of equality test operator in [ is '='
author Mychaela Falconia <falcon@freecalypso.org>
date Mon, 29 May 2017 06:50:47 +0000
parents 5c13f9325e2d
children 17f3647752ba
comparison
equal deleted inserted replaced
242:a6360ee05c47 243:619febca2803
14 exit 1 14 exit 1
15 fi 15 fi
16 16
17 # start looking at our invokation line 17 # start looking at our invokation line
18 18
19 if [ "$1" == --clean ] 19 if [ "$1" = --clean ]
20 then 20 then
21 clean_flag=1 21 clean_flag=1
22 shift 22 shift
23 else 23 else
24 clean_flag=0 24 clean_flag=0