diff options
author | Elaina Thompson <felinae@ulthar.cat> | 2021-12-27 13:09:34 -0800 |
---|---|---|
committer | dispatch <dispatch@listserv.local> | 2021-12-27 21:15:34 +0000 |
commit | 4ad82d59c111ace5c1762112fa7e108f066a8348 (patch) | |
tree | 4590b3d78e698f81da73a4cc97e2da3e49ff8a7e | |
parent | d503ca5a8dd98553e1b1803e9779a13dda2043d0 (diff) | |
download | aports-patches/3845.tar.gz aports-patches/3845.tar.bz2 aports-patches/3845.tar.xz |
testing/9base: fix troff directorypatches/3845
as is, the troff directory gets placed in the incorrect place due to mkdir
already creating the directory. this should fix that behavior.
Ps: first patch (anywhere) apologies if anything is wrong or sloppy
-rw-r--r-- | testing/9base/APKBUILD | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/testing/9base/APKBUILD b/testing/9base/APKBUILD index 9d77b93e46..3e713d0024 100644 --- a/testing/9base/APKBUILD +++ b/testing/9base/APKBUILD @@ -47,7 +47,7 @@ troff() { cd "$pkgdir" mkdir -p "$subpkgdir/usr/lib/9base/bin" mv "$pkgdir/usr/lib/9base/bin/troff" "$subpkgdir/usr/lib/9base/bin/troff" - mkdir -p "$subpkgdir/usr/lib/9base/lib/troff" + mkdir -p "$subpkgdir/usr/lib/9base/lib" mv "$pkgdir/usr/lib/9base/lib/troff" "$subpkgdir/usr/lib/9base/lib/troff" } |