diff options
author | Carlo Landmeter <clandmeter@alpinelinux.org> | 2019-12-10 23:34:30 +0000 |
---|---|---|
committer | Carlo Landmeter <clandmeter@alpinelinux.org> | 2019-12-10 23:48:35 +0000 |
commit | 8b8fc7f08aabe92d67543383e5fe2e515fbc3eea (patch) | |
tree | 2abb17ce4e7cbfe011ad649d9233947a68d2769b /main/busybox | |
parent | 2379f03a9ab98d2a3845f360063ae03a5b94b2a7 (diff) | |
download | aports-8b8fc7f08aabe92d67543383e5fe2e515fbc3eea.tar.bz2 aports-8b8fc7f08aabe92d67543383e5fe2e515fbc3eea.tar.xz |
main/busybox: post-install make sure target directory exist
We cleanup emtpy dirs in abuild:b8b8a651fc147669e3e811f55198305b97c1001c
this breaks installing busybox symlinks on netboot due to missing target
directory.
Diffstat (limited to 'main/busybox')
-rw-r--r-- | main/busybox/APKBUILD | 2 | ||||
-rw-r--r-- | main/busybox/busybox.post-install | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/main/busybox/APKBUILD b/main/busybox/APKBUILD index 13986f2a26..69807312e6 100644 --- a/main/busybox/APKBUILD +++ b/main/busybox/APKBUILD @@ -3,7 +3,7 @@ # Maintainer: Natanael Copa <ncopa@alpinelinux.org> pkgname=busybox pkgver=1.31.1 -pkgrel=2 +pkgrel=3 pkgdesc="Size optimized toolbox of many common UNIX utilities" url="https://busybox.net/" arch="all" diff --git a/main/busybox/busybox.post-install b/main/busybox/busybox.post-install index a986b2f766..fbd262c742 100644 --- a/main/busybox/busybox.post-install +++ b/main/busybox/busybox.post-install @@ -1,4 +1,5 @@ #!/bin/sh # We need the symlinks early +/bin/busybox mkdir -p /usr/bin exec /bin/busybox --install -s |