diff options
author | Max Horn | 2005-07-08 16:16:32 +0000 |
---|---|---|
committer | Max Horn | 2005-07-08 16:16:32 +0000 |
commit | 07b5d93eaa8c6405d075210c903a826ee5774945 (patch) | |
tree | 977708d317cd1022c341f9fea47d98ca1413d750 | |
parent | 954b578063c5d96ab76dfb8d170b175edc09c362 (diff) | |
download | scummvm-rg350-07b5d93eaa8c6405d075210c903a826ee5774945.tar.gz scummvm-rg350-07b5d93eaa8c6405d075210c903a826ee5774945.tar.bz2 scummvm-rg350-07b5d93eaa8c6405d075210c903a826ee5774945.zip |
Fixes for RISC OS
svn-id: r18514
-rwxr-xr-x | configure | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -450,7 +450,7 @@ linupy) _host_os=linux _host_cpu=arm ;; -arm-riscos-aof) +arm-riscos) _host_os=riscos _host_cpu=arm ;; @@ -473,7 +473,7 @@ case $_host_os in mingw* | cygwin*) EXEEXT=".exe" ;; -arm-riscos-aof) +arm-riscos) EXEEXT=",ff8" ;; *) @@ -645,7 +645,7 @@ fi if test -n "$_host"; then # Cross-compiling mode - add your target here if needed case "$_host" in - linupy|arm-riscos-aof) + linupy|arm-riscos) echo "Cross-compiling to $_host, forcing endianness, alignment and type sizes" DEFINES="$DEFINES -DUNIX" _def_endianness='#define SCUMM_LITTLE_ENDIAN' @@ -666,7 +666,7 @@ if test -n "$_host"; then LDFLAGS="$LDFLAGS -newlib" ;; *) - echo "Cross-compiling to unknown target, please add your target to configure." + echo "Cross-compiling to unknown target $_host, please add your target to configure." exit 1 ;; esac |