diff options
author | Max Rees <maxcrees@me.com> | 2019-07-21 04:02:27 -0400 |
---|---|---|
committer | Max Rees <maxcrees@me.com> | 2019-07-21 04:43:04 -0400 |
commit | 23bcb3767f6d16eaba523055f0b8474bfbae16ba (patch) | |
tree | 95327b88bac6651c45ca92c099d4fb300716ba49 /system/bash | |
parent | d3eb7058d8f66a7fa94c262314df4c95a76a36fc (diff) | |
download | packages-23bcb3767f6d16eaba523055f0b8474bfbae16ba.tar.gz packages-23bcb3767f6d16eaba523055f0b8474bfbae16ba.tar.bz2 packages-23bcb3767f6d16eaba523055f0b8474bfbae16ba.tar.xz packages-23bcb3767f6d16eaba523055f0b8474bfbae16ba.zip |
system/*: initial bashism removal
Diffstat (limited to 'system/bash')
-rw-r--r-- | system/bash/APKBUILD | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/system/bash/APKBUILD b/system/bash/APKBUILD index ccdf8ab13..1e1dccbee 100644 --- a/system/bash/APKBUILD +++ b/system/bash/APKBUILD @@ -5,7 +5,7 @@ pkgname=bash pkgver=4.4.23 _patchlevel=${pkgver##*.} _myver=${pkgver%.*} -_patchbase=${_myver/./} +_patchbase=$(printf '%s' "$_myver" | tr -d .) pkgrel=1 pkgdesc="The GNU Bourne Again shell" url="https://www.gnu.org/software/bash/bash.html" |