From patchwork Fri Aug 5 21:27:58 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: fix bootstrap in libgcc for PowerPC FreeBSD Date: Fri, 05 Aug 2011 11:27:58 -0000 From: Andreas Tobler X-Patchwork-Id: 108740 Message-Id: <4E3C605E.3070105@fgznet.ch> To: GCC Patches 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 * 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 @@ # . # We do not want to build ibm-ldouble.c. -LIB2ADD := $(filter-out ibm-ldouble.c, $(LIB2ADD)) +LIB2ADD := $(filter-out %ibm-ldouble.c, $(LIB2ADD))