diff mbox

Re: MULTIARCH_DIRNAME in gcc/config/rs6000/t-linux doesn't work

Message ID 50B332E5.909@ubuntu.com
State New
Headers show

Commit Message

Matthias Klose Nov. 26, 2012, 9:14 a.m. UTC
Am 26.11.2012 09:50, schrieb Jan-Benedict Glaw:
> The ifeq in this new makefile fragment doesn't work due to unbalanced
> brackets.

Fixed, and committing as obvious. Sorry, apparently I missed testing the
non-multilib'd configuration.

  Matthias
diff mbox

Patch

2012-11-26  Matthias Klose  <doko@ubuntu.com>

	* config/rs6000/t-linux (MULTIARCH_DIRNAME): Fix unbalanced
	parentheses.

Index: config/rs6000/t-linux
===================================================================
--- config/rs6000/t-linux	(Revision 193804)
+++ config/rs6000/t-linux	(Arbeitskopie)
@@ -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