diff options
author | Michał Górny <mgorny@gentoo.org> | 2015-09-29 18:13:23 +0200 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2015-09-29 18:13:23 +0200 |
commit | 997ff7a451b339bc2402340ab600c02c7e0cccc7 (patch) | |
tree | c98e2817be3ce44f20e423f8ee6aa299c404eea9 /dev-libs/liblinear | |
parent | autotools.eclass: run libtoolize with --ltdl automatically #534088 (diff) | |
download | gentoo-997ff7a451b339bc2402340ab600c02c7e0cccc7.tar.gz gentoo-997ff7a451b339bc2402340ab600c02c7e0cccc7.tar.bz2 gentoo-997ff7a451b339bc2402340ab600c02c7e0cccc7.zip |
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
Diffstat (limited to 'dev-libs/liblinear')
-rw-r--r-- | dev-libs/liblinear/liblinear-210-r1.ebuild | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/dev-libs/liblinear/liblinear-210-r1.ebuild b/dev-libs/liblinear/liblinear-210-r1.ebuild index 250995b54042..1e7b089fbe61 100644 --- a/dev-libs/liblinear/liblinear-210-r1.ebuild +++ b/dev-libs/liblinear/liblinear-210-r1.ebuild @@ -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 } |