|
|
- --- a/Makefile
- +++ b/Makefile
- @@ -427,9 +427,9 @@
- @echo 'cd "$(gameinstalldir)"' >> openra
- # Note: this relies on the non-standard -f flag implemented by gnu readlink
- ifeq ($(DEBUG), $(filter $(DEBUG),false no n off 0))
- - @echo 'mono OpenRA.Game.exe Engine.LaunchPath="$(readlink -f $0)" "$$@"' >> openra
- + @echo 'mono OpenRA.Game.exe Engine.LaunchPath="$$(readlink -f $$0)" "$$@"' >> openra
- else
- - @echo 'mono --debug OpenRA.Game.exe Engine.LaunchPath="$(readlink -f $0)" "$$@"' >> openra
- + @echo 'mono --debug OpenRA.Game.exe Engine.LaunchPath="$$(readlink -f $$0)" "$$@"' >> openra
- endif
- @echo 'if [ $$? != 0 -a $$? != 1 ]' >> openra
- @echo 'then' >> openra
|