On 09.08.11 13:59, Rainer Orth wrote:
Hi Andreas,

the patch below survives bootstrap stage-1 on PowerPC FreeBSD successfully.
W/o patch we try to fliter-out ibm-ldouble.c. So from my understanding the
pattern ibm-ldouble.c does never match since there is a path prepended to
the file name.
With the patch we look for everything which contains ibm-ldouble.c...

Is this ok for head?

while I cannot approve it, I'm pretty sure this counts as obvious.

I committed this one.

Thanks,
Andreas

Sorry for the breakage.

        Rainer


2011-08-05  Andreas Tobler<andre...@fgznet.ch>

        * config/rs6000/t-freebsd: Add a wildcard to the filter to find
        the file with the path.

I'd write it as

        * config/rs6000/t-freebsd (LIB2ADD): Add wildcard.

Index: config/rs6000/t-freebsd
===================================================================
--- config/rs6000/t-freebsd     (revision 177472)
+++ config/rs6000/t-freebsd     (working copy)
@@ -19,4 +19,4 @@
  #<http://www.gnu.org/licenses/>.

  # We do not want to build ibm-ldouble.c.
-LIB2ADD := $(filter-out ibm-ldouble.c, $(LIB2ADD))
+LIB2ADD := $(filter-out %ibm-ldouble.c, $(LIB2ADD))


Reply via email to