diff options
author | Max Rees <maxcrees@me.com> | 2019-07-21 19:44:28 -0400 |
---|---|---|
committer | Max Rees <maxcrees@me.com> | 2019-07-21 19:44:28 -0400 |
commit | db4d737a2d883f7d3ff122fa3116afecb9942770 (patch) | |
tree | a829de67577a3c8dac8386d902d25de634117e1a /user/kate | |
parent | 94731625b42d0dfc0fd5111482938584b40c7478 (diff) | |
download | packages-db4d737a2d883f7d3ff122fa3116afecb9942770.tar.gz packages-db4d737a2d883f7d3ff122fa3116afecb9942770.tar.bz2 packages-db4d737a2d883f7d3ff122fa3116afecb9942770.tar.xz packages-db4d737a2d883f7d3ff122fa3116afecb9942770.zip |
user/*: APKBUILD bashism removal, part one (a-p)
Diffstat (limited to 'user/kate')
-rw-r--r-- | user/kate/APKBUILD | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/user/kate/APKBUILD b/user/kate/APKBUILD index ae31b0430..26afe3227 100644 --- a/user/kate/APKBUILD +++ b/user/kate/APKBUILD @@ -71,7 +71,7 @@ kwrite_doc() { pkgdesc="Simple GUI text editor (documentation)" install_if="docs kwrite=$pkgver-r$pkgrel" for _langpath in "$pkgdir"/usr/share/doc/HTML/*; do - local _sublangpath=${_langpath/"$pkgdir"/"$subpkgdir"} + local _sublangpath="$subpkgdir/${_langpath#"$pkgdir"}" if [ -d "$_langpath"/kwrite ]; then mkdir -p "$_sublangpath" mv "$_langpath"/kwrite "$_sublangpath"/ @@ -84,7 +84,7 @@ kwrite_lang() { pkgdesc="Simple GUI text editor (translations)" for _langpath in "$pkgdir"/usr/share/locale/*/LC_MESSAGES; do - local _sublangpath=${_langpath/"$pkgdir"/"$subpkgdir"} + local _sublangpath="$subpkgdir/${_langpath#"$pkgdir"}" if [ -f "$_langpath"/kwrite.mo ]; then mkdir -p "$_sublangpath" mv "$_langpath"/kwrite.mo "$_sublangpath"/ |