Revert "Suppress busybox compile"

This reverts commit 8da1dabdea.
This commit is contained in:
Joe Groocock 2017-09-13 20:05:13 +01:00
parent 30d6914bb5
commit 48bac2e478
Signed by: frebib
GPG Key ID: E0B16BEACFBB6A86

View File

@ -37,7 +37,6 @@ RUN curl -fL https://ftp.gnu.org/gnu/glibc/glibc-${GLIBC_VER}.tar.xz \
echo "rootsbindir=/sbin" >> configparms && \ echo "rootsbindir=/sbin" >> configparms && \
echo "build-programs=yes" >> configparms && \ echo "build-programs=yes" >> configparms && \
\ \
exec >/dev/null && \
../configure \ ../configure \
--prefix=/usr \ --prefix=/usr \
--libdir=/usr/lib \ --libdir=/usr/lib \
@ -72,7 +71,6 @@ WORKDIR /tmp/busybox
RUN curl -fL https://busybox.net/downloads/busybox-${BUSYB_VER}.tar.bz2 \ RUN curl -fL https://busybox.net/downloads/busybox-${BUSYB_VER}.tar.bz2 \
| tar xj --strip-components=1 && \ | tar xj --strip-components=1 && \
# Use default configuration # Use default configuration
exec >/dev/null && \
make defconfig && \ make defconfig && \
make -j "$(nproc)" && \ make -j "$(nproc)" && \
cp busybox "${PREFIX}/bin" && \ cp busybox "${PREFIX}/bin" && \