aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthias Klose <doko@ubuntu.com>2012-11-26 09:41:45 +0000
committerMatthias Klose <doko@gcc.gnu.org>2012-11-26 09:41:45 +0000
commit412dc8423772fb83da7c616900db8a66b84e1f2b (patch)
tree84e042827b438c81ff50232a9f7cf4c40d177ecb
parent751a243337660bfb64bb0a6ded40688e9c3c7cf6 (diff)
downloadgcc-412dc8423772fb83da7c616900db8a66b84e1f2b.zip
gcc-412dc8423772fb83da7c616900db8a66b84e1f2b.tar.gz
gcc-412dc8423772fb83da7c616900db8a66b84e1f2b.tar.bz2
t-linux (MULTIARCH_DIRNAME): Fix unbalanced parentheses.
2012-11-26 Matthias Klose <doko@ubuntu.com> * config/rs6000/t-linux (MULTIARCH_DIRNAME): Fix unbalanced parentheses. From-SVN: r193807
-rw-r--r--gcc/ChangeLog5
-rw-r--r--gcc/config/rs6000/t-linux2
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index e58b1e6..ad6b4cc 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,8 @@
+2012-11-26 Matthias Klose <doko@ubuntu.com>
+
+ * config/rs6000/t-linux (MULTIARCH_DIRNAME): Fix unbalanced
+ parentheses.
+
2012-11-26 Jakub Jelinek <jakub@redhat.com>
PR tree-optimization/54471
diff --git a/gcc/config/rs6000/t-linux b/gcc/config/rs6000/t-linux
index a9f9865..3611027 100644
--- a/gcc/config/rs6000/t-linux
+++ b/gcc/config/rs6000/t-linux
@@ -1,5 +1,5 @@
# do not define the multiarch name if configured for a soft-float cpu
# or soft-float.
-ifeq (,$(filter $(with_cpu),$(SOFT_FLOAT_CPUS))$(findstring soft,$(with_float))
+ifeq (,$(filter $(with_cpu),$(SOFT_FLOAT_CPUS))$(findstring soft,$(with_float)))
MULTIARCH_DIRNAME = powerpc-linux-gnu
endif