mirror of
https://github.com/tesseract-ocr/tesseract.git
synced 2025-06-07 18:02:40 +08:00
autogen.sh: fix a bashism
Use [ "$foo" = "bar" ] instead of [ "$foo" == "bar" ]. The latter is a bashism.
This commit is contained in:
parent
228317caa1
commit
9851bb23b1
@ -27,7 +27,7 @@
|
|||||||
#
|
#
|
||||||
# All the rest is auto-generated.
|
# All the rest is auto-generated.
|
||||||
|
|
||||||
if [ "$1" == "clean" ]; then
|
if [ "$1" = "clean" ]; then
|
||||||
echo "Cleaning..."
|
echo "Cleaning..."
|
||||||
rm configure aclocal.m4
|
rm configure aclocal.m4
|
||||||
rm m4/*
|
rm m4/*
|
||||||
|
Loading…
Reference in New Issue
Block a user