summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Orlitzky <mjo@gentoo.org>2015-12-10 09:03:13 -0500
committerMichael Orlitzky <mjo@gentoo.org>2015-12-10 09:03:13 -0500
commit9ad05523d41421d97ae54e47bf3fdd293a48e275 (patch)
tree9a7659380e6e3057d42e3e9be566ae3f7d817431
parentDocument the find_targets_apache2() and get_active_apache2() functions. (diff)
downloadeselect-php-9ad05523d41421d97ae54e47bf3fdd293a48e275.tar.gz
eselect-php-9ad05523d41421d97ae54e47bf3fdd293a48e275.tar.bz2
eselect-php-9ad05523d41421d97ae54e47bf3fdd293a48e275.zip
Add curly braces around an interpolated string variable.
-rw-r--r--src/php.eselect.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/php.eselect.in b/src/php.eselect.in
index e08afbe..2ea8c3d 100644
--- a/src/php.eselect.in
+++ b/src/php.eselect.in
@@ -102,7 +102,7 @@ find_targets_apache2() {
local libs target libdir
for target in $(find_targets); do
for libdir in $(get_libdirs); do
- libs="${EROOT}${libdir}/$target/apache2/libphp[57].so"
+ libs="${EROOT}${libdir}/${target}/apache2/libphp[57].so"
for lib in $libs; do
[[ -f "${lib}" ]] && echo $target
done