diff options
author | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2023-11-29 23:52:29 -0600 |
---|---|---|
committer | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2023-11-29 23:53:48 -0600 |
commit | 2dd298985c02cf14f8bf01fa449c3b1045b60239 (patch) | |
tree | adf9b88760dd357cae847ef2debfa67073585326 /system/db | |
parent | 9c34f8abbe330752d843c677dc81fb2e6390b6dd (diff) | |
download | packages-2dd298985c02cf14f8bf01fa449c3b1045b60239.tar.gz packages-2dd298985c02cf14f8bf01fa449c3b1045b60239.tar.bz2 packages-2dd298985c02cf14f8bf01fa449c3b1045b60239.tar.xz packages-2dd298985c02cf14f8bf01fa449c3b1045b60239.zip |
system/db: Move docs instead of copying them
The -r3 package copied the documentation tree instead of moving it,
causing the entire documentation tree to also be a part of the base
system/db package.
Fixes: 2cc3911dd4 ("system/db: Fix documentation packaging")
Diffstat (limited to 'system/db')
-rw-r--r-- | system/db/APKBUILD | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/system/db/APKBUILD b/system/db/APKBUILD index 80ef59983..1655d4556 100644 --- a/system/db/APKBUILD +++ b/system/db/APKBUILD @@ -1,7 +1,7 @@ # Maintainer: pkgname=db pkgver=5.3.28 -pkgrel=3 +pkgrel=4 pkgdesc="The Berkeley DB embedded database system" url="https://www.oracle.com/technology/software/products/berkeley-db/index.html" arch="all" @@ -40,7 +40,7 @@ package() { make DESTDIR="$pkgdir" install mkdir -p "$pkgdir"/usr/share/doc - cp -a "$pkgdir"/usr/docs "$pkgdir"/usr/share/doc/$pkgname + mv "$pkgdir"/usr/docs "$pkgdir"/usr/share/doc/$pkgname for _extraneous in api_reference/STL api_reference/TCL csharp java\ gsg/JAVA gsg_db_rep/JAVA gsg_txn/JAVA installation; do |