diff options
author | Lucio Andrés Illanes Albornoz (arab, vxp) <lucio@lucioillanes.de> | 2017-11-21 22:14:13 +0000 |
---|---|---|
committer | Lucio Andrés Illanes Albornoz (arab, vxp) <lucio@lucioillanes.de> | 2017-11-21 22:14:13 +0000 |
commit | d7eaa6d179d2b363a6a9260ecea98f2bbefead16 (patch) | |
tree | cab6b9c1ed4fef0240b0d3f69a19ff2818348f6e | |
parent | e8b3b5447ccd38768d07a107e468d229348faa2a (diff) | |
download | midipix_build-d7eaa6d179d2b363a6a9260ecea98f2bbefead16.tar.bz2 midipix_build-d7eaa6d179d2b363a6a9260ecea98f2bbefead16.tar.xz |
subr/pkg_install_libs.subr:pkgp_install_lib_check(): fix typo in glob.
-rw-r--r-- | subr/pkg_install_libs.subr | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/subr/pkg_install_libs.subr b/subr/pkg_install_libs.subr index 452694bf..c00737c5 100644 --- a/subr/pkg_install_libs.subr +++ b/subr/pkg_install_libs.subr @@ -5,7 +5,7 @@ pkgp_install_lib_check() { local _so_path="${1}" _so_ver="${1##*.so}"; while [ -n "${_so_ver}" ]; do - if [ "${_so_ver#[0-9].}" = "${_so_ver}" ]; then + if [ "${_so_ver#[0-9.]}" = "${_so_ver}" ]; then return 0; else _so_ver="${_so_ver#[0-9].}"; |