diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2018-04-27 15:28:42 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2018-04-27 15:30:45 +0000 |
commit | d91d0a1826a56b0b9c833250dfbfdc6be31b93fe (patch) | |
tree | c8b77a1b601508d8db7a50aec79fbdc56834219f /main | |
parent | 7f1e3b123071b5c7abe79a7cb5c1ecf9e38ee2e9 (diff) | |
download | aports-d91d0a1826a56b0b9c833250dfbfdc6be31b93fe.tar.bz2 aports-d91d0a1826a56b0b9c833250dfbfdc6be31b93fe.tar.xz |
main/patch: use coreutils for tests due to bug in busybox `cat -ve`
Reported upstream:
http://lists.busybox.net/pipermail/busybox/2018-April/086401.html
Diffstat (limited to 'main')
-rw-r--r-- | main/patch/APKBUILD | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/main/patch/APKBUILD b/main/patch/APKBUILD index 4c69c9273f..54993e4656 100644 --- a/main/patch/APKBUILD +++ b/main/patch/APKBUILD @@ -9,7 +9,9 @@ arch="all" license="GPL-3.0+" depends="" makedepends="" -checkdepends="bash ed" +# testsuite needs coreutils due to bug in busybox `cat -ve` +# http://lists.busybox.net/pipermail/busybox/2018-April/086401.html +checkdepends="coreutils bash ed" install="" subpackages="$pkgname-doc" source="ftp://ftp.gnu.org/gnu/$pkgname/$pkgname-$pkgver.tar.xz |