Fix the indentation in the make file

This commit is contained in:
abcdefg30 2018-09-01 17:31:48 +02:00 committed by Paul Chote
parent 2fadd8c59c
commit bbb21311f5

View File

@ -59,16 +59,16 @@ scripts:
variables: variables:
@if [ -z "$(MOD_ID)" ] || [ -z "$(ENGINE_DIRECTORY)" ]; then \ @if [ -z "$(MOD_ID)" ] || [ -z "$(ENGINE_DIRECTORY)" ]; then \
echo "Required mod.config variables are missing:"; \ echo "Required mod.config variables are missing:"; \
if [ -z "$(MOD_ID)" ]; then \ if [ -z "$(MOD_ID)" ]; then \
echo " MOD_ID"; \ echo " MOD_ID"; \
fi; \ fi; \
if [ -z "$(ENGINE_DIRECTORY)" ]; then \ if [ -z "$(ENGINE_DIRECTORY)" ]; then \
echo " ENGINE_DIRECTORY"; \ echo " ENGINE_DIRECTORY"; \
fi; \ fi; \
echo "Repair your mod.config (or user.config) and try again."; \ echo "Repair your mod.config (or user.config) and try again."; \
exit 1; \ exit 1; \
fi fi
engine: variables scripts engine: variables scripts
@./fetch-engine.sh || (printf "Unable to continue without engine files\n"; exit 1) @./fetch-engine.sh || (printf "Unable to continue without engine files\n"; exit 1)