diff options
author | A. Wilcox <awilcox@wilcox-tech.com> | 2019-07-09 07:01:50 +0000 |
---|---|---|
committer | A. Wilcox <awilcox@wilcox-tech.com> | 2019-07-09 07:01:50 +0000 |
commit | 8cf1fca42f6e0e24e9afc2146aa0965c27613128 (patch) | |
tree | 27400205bf9f42938de616bc732b28e243ec16a2 | |
parent | 7fa0d0d92025b27f4680c0933182127c7582c154 (diff) | |
parent | e2e92c870100054b130d2a041cf484d905cce9ab (diff) | |
download | packages-8cf1fca42f6e0e24e9afc2146aa0965c27613128.tar.gz packages-8cf1fca42f6e0e24e9afc2146aa0965c27613128.tar.bz2 packages-8cf1fca42f6e0e24e9afc2146aa0965c27613128.tar.xz packages-8cf1fca42f6e0e24e9afc2146aa0965c27613128.zip |
Merge branch 'lr.env' into 'master'
system/coreutils: Move env back to /usr/bin/
See merge request adelie/packages!274
-rw-r--r-- | system/coreutils/APKBUILD | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/system/coreutils/APKBUILD b/system/coreutils/APKBUILD index a9d65cccf..e5461c7d2 100644 --- a/system/coreutils/APKBUILD +++ b/system/coreutils/APKBUILD @@ -3,7 +3,7 @@ # Maintainer: A. Wilcox <awilfox@adelielinux.org> pkgname=coreutils pkgver=8.31 -pkgrel=2 +pkgrel=3 pkgdesc="Basic file, shell, and text manipulation utilities" url="https://www.gnu.org/software/coreutils/" arch="all" @@ -58,8 +58,9 @@ package() { make DESTDIR="$pkgdir" install # stdbuf(1) requires a /usr/libexec/ .so + # env(1) needs to be in /usr/bin/ for compatibility with the rest of the world mkdir -p "$pkgdir"/usr/bin - mv "$pkgdir"/bin/stdbuf "$pkgdir"/usr/bin/ + mv "$pkgdir"/bin/stdbuf "$pkgdir"/bin/env "$pkgdir"/usr/bin/ } sha512sums="ef8941dae845bbf5ae5838bc49e44554a766302930601aada6fa594e8088f0fbad74e481ee392ff89633e68b99e4da3f761fcb5d31ee3b233d540fe2a2d4e1af coreutils-8.31.tar.xz |