This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

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


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

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

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]