Hi,

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?

Thanks,
Andreas

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.

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