Add missing quoting around make parameters. Thanks to Ben Kohler for the
solution.
Fixes: https://bugs.gentoo.org/show_bug.cgi?id=561826
Package-Manager: portage-2.2.20
src_compile() {
emake \
- CC=$(tc-getCC) \
- CXX=$(tc-getCXX) \
+ CC="$(tc-getCC)" \
+ CXX="$(tc-getCXX)" \
CFLAGS="${CFLAGS} -fPIC" \
CXXFLAGS="${CXXFLAGS} -fPIC" \
AR="$(tc-getAR) rcv" \
RANLIB="$(tc-getRANLIB)" \
- LIBS=$($(tc-getPKG_CONFIG) --libs blas) \
+ LIBS="$($(tc-getPKG_CONFIG) --libs blas)" \
lib all
}