Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/liblinear/
Date: Tue, 29 Sep 2015 16:13:39
Message-Id: 1443543203.997ff7a451b339bc2402340ab600c02c7e0cccc7.mgorny@gentoo
1 commit: 997ff7a451b339bc2402340ab600c02c7e0cccc7
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Tue Sep 29 16:13:23 2015 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Tue Sep 29 16:13:23 2015 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=997ff7a4
7
8 dev-libs/liblinear: fix missing quoting, #561826
9
10 Add missing quoting around make parameters. Thanks to Ben Kohler for the
11 solution.
12
13 Fixes: https://bugs.gentoo.org/show_bug.cgi?id=561826
14
15 Package-Manager: portage-2.2.20
16
17 dev-libs/liblinear/liblinear-210-r1.ebuild | 6 +++---
18 1 file changed, 3 insertions(+), 3 deletions(-)
19
20 diff --git a/dev-libs/liblinear/liblinear-210-r1.ebuild b/dev-libs/liblinear/liblinear-210-r1.ebuild
21 index 250995b..1e7b089 100644
22 --- a/dev-libs/liblinear/liblinear-210-r1.ebuild
23 +++ b/dev-libs/liblinear/liblinear-210-r1.ebuild
24 @@ -35,13 +35,13 @@ src_prepare() {
25
26 src_compile() {
27 emake \
28 - CC=$(tc-getCC) \
29 - CXX=$(tc-getCXX) \
30 + CC="$(tc-getCC)" \
31 + CXX="$(tc-getCXX)" \
32 CFLAGS="${CFLAGS} -fPIC" \
33 CXXFLAGS="${CXXFLAGS} -fPIC" \
34 AR="$(tc-getAR) rcv" \
35 RANLIB="$(tc-getRANLIB)" \
36 - LIBS=$($(tc-getPKG_CONFIG) --libs blas) \
37 + LIBS="$($(tc-getPKG_CONFIG) --libs blas)" \
38 lib all
39 }