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: Sat, 03 Oct 2015 12:32:30
Message-Id: 1443875532.15f60e9c9f19bcb0fd227d4467e522463b324fa1.mgorny@gentoo
1 commit: 15f60e9c9f19bcb0fd227d4467e522463b324fa1
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sat Oct 3 12:32:12 2015 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sat Oct 3 12:32:12 2015 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=15f60e9c
7
8 dev-libs/liblinear: Fix quoting
9
10 Package-Manager: portage-2.2.22
11
12 dev-libs/liblinear/liblinear-210-r1.ebuild | 6 +++---
13 1 file changed, 3 insertions(+), 3 deletions(-)
14
15 diff --git a/dev-libs/liblinear/liblinear-210-r1.ebuild b/dev-libs/liblinear/liblinear-210-r1.ebuild
16 index 031b30b..cbd8d0e 100644
17 --- a/dev-libs/liblinear/liblinear-210-r1.ebuild
18 +++ b/dev-libs/liblinear/liblinear-210-r1.ebuild
19 @@ -42,13 +42,13 @@ src_prepare() {
20
21 src_compile() {
22 emake \
23 - CC=$(tc-getCC) \
24 - CXX=$(tc-getCXX) \
25 + CC="$(tc-getCC)" \
26 + CXX="$(tc-getCXX)" \
27 CFLAGS="${CFLAGS} -fPIC" \
28 CXXFLAGS="${CXXFLAGS} -fPIC" \
29 AR="$(tc-getAR) rcv" \
30 RANLIB="$(tc-getRANLIB)" \
31 - "LIBS=$(usex blas $( $(tc-getPKG_CONFIG) --libs blas ) blas/blas.a)" \
32 + LIBS="$(usex blas "$( $(tc-getPKG_CONFIG) --libs blas )" blas/blas.a)" \
33 lib all
34 }