+Tue Jan 13 17:50:55 1998 Jim Wilson <wilson@cygnus.com>
+
+ * configure.in (target_cpu_default, target_cpu_default2): Use double
+ quotes around them when testing their value.
+ * configure: Rebuilt.
+
Tue Jan 13 09:07:44 1998 John Carr <jfc@mit.edu>
* gengenrtl.c (gencode): Emit new function obstack_alloc_rtx
if [ x$gas = xyes ]
then
- if [ x$target_cpu_default2 = x ]
+ if [ "$target_cpu_default2" = "" ]
then
target_cpu_default2="MASK_GAS"
else
;;
esac
- if [ x$target_cpu_default2 != x ]
+ if [ "$target_cpu_default2" != "" ]
then
- if [ x$target_cpu_default != x ]
+ if [ "$target_cpu_default" != "" ]
then
target_cpu_default="(${target_cpu_default}|${target_cpu_default2})"
else
# Define TARGET_CPU_DEFAULT if the system wants one.
# This substitutes for lots of *.h files.
- if [ x$target_cpu_default != x -a $link = tm.h ]
+ if [ "$target_cpu_default" != "" -a $link = tm.h ]
then
echo "#define TARGET_CPU_DEFAULT ($target_cpu_default)" >>$link
fi
if [[ x$gas = xyes ]]
then
- if [[ x$target_cpu_default2 = x ]]
+ if [[ "$target_cpu_default2" = "" ]]
then
target_cpu_default2="MASK_GAS"
else
;;
esac
- if [[ x$target_cpu_default2 != x ]]
+ if [[ "$target_cpu_default2" != "" ]]
then
- if [[ x$target_cpu_default != x ]]
+ if [[ "$target_cpu_default" != "" ]]
then
target_cpu_default="(${target_cpu_default}|${target_cpu_default2})"
else
# Define TARGET_CPU_DEFAULT if the system wants one.
# This substitutes for lots of *.h files.
- if [[ x$target_cpu_default != x -a $link = tm.h ]]
+ if [[ "$target_cpu_default" != "" -a $link = tm.h ]]
then
echo "#define TARGET_CPU_DEFAULT ($target_cpu_default)" >>$link
fi