mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-09-24 04:59:14 -07:00
dev-libs/liblinear: fix missing quoting, #561826
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
This commit is contained in:
@@ -35,13 +35,13 @@ src_prepare() {
|
||||
|
||||
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
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user