diff options
author | Johannes Schickel | 2016-02-17 12:36:51 +0100 |
---|---|---|
committer | Johannes Schickel | 2016-02-17 12:37:36 +0100 |
commit | 414510993743f58997fa0c8a5fb390f6c9a8455c (patch) | |
tree | 63bfe48a17df196857ae35d6f1b517cbfe65abda /backends/platform/sdl | |
parent | 89e9a36af546921afa7b870430e0405b0aa87048 (diff) | |
download | scummvm-rg350-414510993743f58997fa0c8a5fb390f6c9a8455c.tar.gz scummvm-rg350-414510993743f58997fa0c8a5fb390f6c9a8455c.tar.bz2 scummvm-rg350-414510993743f58997fa0c8a5fb390f6c9a8455c.zip |
AMIGAOS: Fix native build breakage caused by indented comments in amigaos.mk.
As pointed out by Raziel^.
Diffstat (limited to 'backends/platform/sdl')
-rw-r--r-- | backends/platform/sdl/amigaos/amigaos.mk | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/backends/platform/sdl/amigaos/amigaos.mk b/backends/platform/sdl/amigaos/amigaos.mk index c4928ece13..15a2e9f93f 100644 --- a/backends/platform/sdl/amigaos/amigaos.mk +++ b/backends/platform/sdl/amigaos/amigaos.mk @@ -11,9 +11,10 @@ ifdef DIST_FILES_ENGINEDATA cp $(DIST_FILES_ENGINEDATA) $(AMIGAOSPATH)/extras/ endif cat ${srcdir}/README | sed -f ${srcdir}/dists/amiga/convertRM.sed > README.conv - # AREXX seems to have problems when ${srcdir} is '.'. It will break with a - # "Program not found" error. Therefore we copy the script to the cwd and - # remove it again, once it has finished. +# AmigaOS's shell is not happy with indented comments, thus don't do it. +# AREXX seems to have problems when ${srcdir} is '.'. It will break with a +# "Program not found" error. Therefore we copy the script to the cwd and +# remove it again, once it has finished. cp ${srcdir}/dists/amiga/RM2AG.rx . rx RM2AG.rx README.conv cp README.guide $(AMIGAOSPATH) |