Gentoo Archives: gentoo-commits

From: Michael Orlitzky <mjo@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/eselect-php:master commit in: src/
Date: Fri, 11 Dec 2015 00:40:36
Message-Id: 1449756193.9ad05523d41421d97ae54e47bf3fdd293a48e275.mjo@gentoo
1 commit: 9ad05523d41421d97ae54e47bf3fdd293a48e275
2 Author: Michael Orlitzky <mjo <AT> gentoo <DOT> org>
3 AuthorDate: Thu Dec 10 14:03:13 2015 +0000
4 Commit: Michael Orlitzky <mjo <AT> gentoo <DOT> org>
5 CommitDate: Thu Dec 10 14:03:13 2015 +0000
6 URL: https://gitweb.gentoo.org/proj/eselect-php.git/commit/?id=9ad05523
7
8 Add curly braces around an interpolated string variable.
9
10 src/php.eselect.in | 2 +-
11 1 file changed, 1 insertion(+), 1 deletion(-)
12
13 diff --git a/src/php.eselect.in b/src/php.eselect.in
14 index e08afbe..2ea8c3d 100644
15 --- a/src/php.eselect.in
16 +++ b/src/php.eselect.in
17 @@ -102,7 +102,7 @@ find_targets_apache2() {
18 local libs target libdir
19 for target in $(find_targets); do
20 for libdir in $(get_libdirs); do
21 - libs="${EROOT}${libdir}/$target/apache2/libphp[57].so"
22 + libs="${EROOT}${libdir}/${target}/apache2/libphp[57].so"
23 for lib in $libs; do
24 [[ -f "${lib}" ]] && echo $target
25 done