Use correct path to busybox binary

This commit is contained in:
Joe Groocock 2017-08-09 21:42:28 +01:00
parent f2e9fdf0b5
commit 8161570d58

View File

@ -76,7 +76,7 @@ RUN curl -fL https://busybox.net/downloads/busybox-${BUSYB_VER}.tar.bz2 \
make -j "$(nproc)" && \
cp busybox "${PREFIX}/bin" && \
# "Install" busybox, creating symlinks to all binaries it provides
bin/busybox --list-full | xargs -i ln -s /bin/busybox "${PREFIX}/{}"
./busybox --list-full | xargs -i ln -s /bin/busybox "${PREFIX}/{}"
WORKDIR $PREFIX