diff options
author | Matthias Klose <doko@ubuntu.com> | 2012-11-26 09:41:45 +0000 |
---|---|---|
committer | Matthias Klose <doko@gcc.gnu.org> | 2012-11-26 09:41:45 +0000 |
commit | 412dc8423772fb83da7c616900db8a66b84e1f2b (patch) | |
tree | 84e042827b438c81ff50232a9f7cf4c40d177ecb | |
parent | 751a243337660bfb64bb0a6ded40688e9c3c7cf6 (diff) | |
download | gcc-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/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/config/rs6000/t-linux | 2 |
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 |