diff options
| -rw-r--r-- | Makefile.common | 3 | ||||
| -rwxr-xr-x | configure | 11 | 
2 files changed, 4 insertions, 10 deletions
diff --git a/Makefile.common b/Makefile.common index 6646af8e8d..e96774fe4e 100644 --- a/Makefile.common +++ b/Makefile.common @@ -154,8 +154,7 @@ endif  # Get the current version information  ###################################################################### -# AmigaOS4's grep has a problem with "./" in pathnames, so use cat. -VERSION = $(shell cat "${srcdir}/base/internal_version.h" | grep SCUMMVM_VERSION | cut -d\" -f2) +VERSION = $(shell grep SCUMMVM_VERSION "${srcdir}/base/internal_version.h" | cut -d\" -f2)  VER_MAJOR = $(shell echo $(VERSION) | cut -d. -f 1)  VER_MINOR = $(shell echo $(VERSION) | cut -d. -f 2)  VER_PATCH = $(shell echo $(VERSION) | cut -d. -f 3 | cut -c1) @@ -252,12 +252,7 @@ EOF  }  gcc_get_define() { -	# Note: The AmigaOS compiler doesn't like the "-" input file, so a real file -	# is used instead -	rm -f $TMPC -	touch $TMPC -	$CXX -dM -E $TMPC | fgrep "$1" | head -n1 | cut -d ' ' -f 3- -	rm -f $TMPC +	echo "" | $CXX -dM -E - | fgrep "$1" | head -n1 | cut -d ' ' -f 3-  }  # @@ -1519,8 +1514,7 @@ echo_n "Checking hosttype... "  echo $_host_os  case $_host_os in  	amigaos*) -		CXXFLAGS="$CXXFLAGS -mcrt=newlib -mstrict-align -mcpu=750 -mtune=7400" -		LDFLAGS="$LDFLAGS -mcrt=newlib -use-dynld -L/sdk/local/newlib/lib" +		LDFLAGS="$LDFLAGS -use-dynld -L/sdk/local/newlib/lib"  		# We have to use 'long' for our 4 byte typedef because AmigaOS already typedefs (u)int32  		# as (unsigned) long, and consequently we'd get a compiler error otherwise.  		type_4_byte='long' @@ -1970,6 +1964,7 @@ if test -n "$_host"; then  			;;  		ppc-amigaos)  			_endian=big ++			# AmigaOS exec allocates memory always in an aligned way  			_need_memalign=yes  			;;  		ps2)  | 
