Hi,
The Makefile.bsd-wrapper for src/gnu/lib/libiberty is the only such
Makefile (that I could find) that does not quote ${CC} properly.
A trivial patch is attached.
Cheers,
--
:: Andreas Kusalananda Kähäri, Bioinformatics Developer, BILS,
:: Uppsala University, Sweden
::----------------------------------------------------------------------
Index: Makefile.bsd-wrapper
===================================================================
RCS file: /cvs/src/gnu/lib/libiberty/Makefile.bsd-wrapper,v
retrieving revision 1.15
diff -u -r1.15 Makefile.bsd-wrapper
--- Makefile.bsd-wrapper 31 Aug 2014 01:02:48 -0000 1.15
+++ Makefile.bsd-wrapper 6 May 2015 18:03:30 -0000
@@ -32,7 +32,7 @@
depend: needed-list
needed-list: config.status
- ${MAKE} ${GNUCFLAGS} CC=${CC} needed-list
+ ${MAKE} ${GNUCFLAGS} CC="${CC}" needed-list
config.status: Makefile.in configure
PATH="/bin:/usr/bin:/sbin:/usr/sbin" \