From 412dc8423772fb83da7c616900db8a66b84e1f2b Mon Sep 17 00:00:00 2001 From: Matthias Klose Date: Mon, 26 Nov 2012 09:41:45 +0000 Subject: [PATCH] t-linux (MULTIARCH_DIRNAME): Fix unbalanced parentheses. 2012-11-26 Matthias Klose * config/rs6000/t-linux (MULTIARCH_DIRNAME): Fix unbalanced parentheses. From-SVN: r193807 --- gcc/ChangeLog | 5 +++++ gcc/config/rs6000/t-linux | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index e58b1e66512..ad6b4cc2d0a 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2012-11-26 Matthias Klose + + * config/rs6000/t-linux (MULTIARCH_DIRNAME): Fix unbalanced + parentheses. + 2012-11-26 Jakub Jelinek PR tree-optimization/54471 diff --git a/gcc/config/rs6000/t-linux b/gcc/config/rs6000/t-linux index a9f9865796a..3611027ae27 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 -- 2.11.4.GIT