Shell script code in Makefiles is now POSIX compliant and is able to be run on dash.

This commit is contained in:
Scott Ehlert
2008-12-07 20:40:31 -06:00
parent 1d07d24054
commit 4bbd74b702
14 changed files with 14 additions and 14 deletions
+1 -1
View File
@@ -108,7 +108,7 @@ all: check
$(MAKE) -f Makefile extension
check:
if [ "$(USEMETA)" == "true" ] && [ "$(ENGSET)" == "false" ]; then \
if [ "$(USEMETA)" = "true" ] && [ "$(ENGSET)" = "false" ]; then \
echo "You must supply ENGINE=orangebox or ENGINE=original"; \
exit 1; \
fi