Fixed Configure script to write empty string for CROSS_COMPILE if

CROSS_COMPILE_ENABLED is not yes.
This commit is contained in:
joellen 2000-07-05 05:07:55 +00:00
parent a90865e30b
commit d2cb59a429

View file

@ -333,6 +333,7 @@ if [ "$CROSS_COMPILE_ENABLED" = "y" ] ; then
ask_str "Prefix for cross compiler? (change if cross-compiling)" CROSS_COMPILE
else
CROSS_COMPILE=""
write_str CROSS_COMPILE
fi
dump_str 'CROSS_AS=$(CROSS_COMPILE)as'