mirror of
https://github.com/alliedmodders/metamod-source.git
synced 2025-02-20 13:54:14 +01:00
Shell script code in Makefiles is now POSIX compliant and is able to be run on dash.
This commit is contained in:
parent
7a8572cddd
commit
c229ac6a4c
@ -102,7 +102,7 @@ all: check
|
||||
$(MAKE) -f Makefile metamod
|
||||
|
||||
check:
|
||||
if [ "$(ENGSET)" == "false" ]; then \
|
||||
if [ "$(ENGSET)" = "false" ]; then \
|
||||
echo "You must supply ENGINE=left4dead or ENGINE=orangebox"; \
|
||||
exit 1; \
|
||||
fi
|
||||
|
@ -103,7 +103,7 @@ all: check
|
||||
$(MAKE) -f Makefile sample_mm
|
||||
|
||||
check:
|
||||
if [ "$(ENGSET)" == "false" ]; then \
|
||||
if [ "$(ENGSET)" = "false" ]; then \
|
||||
echo "You must supply ENGINE=left4dead or ENGINE=orangebox or ENGINE=original"; \
|
||||
exit 1; \
|
||||
fi
|
||||
|
@ -103,7 +103,7 @@ all: check
|
||||
$(MAKE) -f Makefile stub_mm
|
||||
|
||||
check:
|
||||
if [ "$(ENGSET)" == "false" ]; then \
|
||||
if [ "$(ENGSET)" = "false" ]; then \
|
||||
echo "You must supply ENGINE=left4dead or ENGINE=orangebox or ENGINE=original"; \
|
||||
exit 1; \
|
||||
fi
|
||||
|
Loading…
x
Reference in New Issue
Block a user