aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgithub-actions[bot] <github-actions[bot]@users.noreply.github.com>2020-03-10 20:53:06 +0000
committergithub-actions[bot] <github-actions[bot]@users.noreply.github.com>2020-03-10 20:53:06 +0000
commit3a8a9f7a00dac40306978264c972581e821cd057 (patch)
tree047af8a71a4e53c067d12fa90669dace2400d21f
parentf49b248a9f107df3355049bab4659934cea1e15e (diff)
downloadPROJ-3a8a9f7a00dac40306978264c972581e821cd057.tar.gz
PROJ-3a8a9f7a00dac40306978264c972581e821cd057.zip
data/Makefile.am: remove bashism
-rw-r--r--data/Makefile.am2
1 files changed, 1 insertions, 1 deletions
diff --git a/data/Makefile.am b/data/Makefile.am
index e7c38d7c..9aa5c6a7 100644
--- a/data/Makefile.am
+++ b/data/Makefile.am
@@ -82,7 +82,7 @@ proj.db: $(DATAPATH)/sql/*.sql
echo "" | head -c1; \
if [ $$? -eq 0 ] ; then \
echo "Running foreign_key_check"; \
- if [[ $$(echo "pragma foreign_key_check;" | sqlite3 proj.db | head -c1 | wc -c) -ne 0 ]]; then \
+ if [ $$(echo "pragma foreign_key_check;" | sqlite3 proj.db | head -c1 | wc -c) -ne 0 ]; then \
echo "Foreign key check failed"; \
$(RM) proj.db; \
exit 1; \