summaryrefslogtreecommitdiffstats
path: root/gcc/configure
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/configure')
-rwxr-xr-xgcc/configure8
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/configure b/gcc/configure
index d216f5167c6..cacb53bf7b9 100755
--- a/gcc/configure
+++ b/gcc/configure
@@ -5393,7 +5393,7 @@ for machine in $build $host $target; do
if [ x$gas = xyes ]
then
- if [ x$target_cpu_default2 = x ]
+ if [ "$target_cpu_default2" = "" ]
then
target_cpu_default2="MASK_GAS"
else
@@ -5494,9 +5494,9 @@ for machine in $build $host $target; do
;;
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
@@ -5647,7 +5647,7 @@ do
# 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
OpenPOWER on IntegriCloud