Fix bug which was triggered by file named 'a' in current directory.

svn-id: r33252
This commit is contained in:
Eugene Sandulenko 2008-07-23 19:50:57 +00:00
parent a5f280647b
commit 8fd3b0c1b3

19
configure vendored
View file

@ -811,6 +811,10 @@ iphone)
_host_os=iphone
_host_cpu=arm
;;
neuros)
_host_os=linux
_host_cpu=arm
;;
*)
if test -z "$_host"; then
guessed_host=`$_srcdir/config.guess`
@ -1123,6 +1127,19 @@ if test -n "$_host"; then
_backend="gp2x"
_build_hq_scalers="no"
;;
neuros)
echo "Cross-compiling to $_host, forcing endianness, alignment and type sizes"
DEFINES="$DEFINES -DUNIX"
_endian=little
_need_memalign=yes
add_line_to_config_h "#define NEUROS"
type_1_byte='char'
type_2_byte='short'
type_4_byte='int'
_backend='null'
_build_hq_scalers="no"
_mt32emu="no"
;;
ppc-amigaos)
echo "Cross-compiling to $_host, forcing endianness, alignment and type sizes"
_endian=big
@ -1629,7 +1646,7 @@ for engine in $_engines; do
fi
# Save the settings
defname="ENABLE_`echo $engine | tr [a-z] [A-Z]`"
defname="ENABLE_`echo $engine | tr '[a-z]' '[A-Z]'`"
if test "$isbuilt" = "no" ; then
add_line_to_config_mk "# $defname"
else