kernel/bcc: Disbale -Werror for elfutils buils

with the new C tool chain elfutils fails with with warnings:

Signed-off-by: Rolf Neugebauer <rn@rneugeba.io>
This commit is contained in:
Rolf Neugebauer 2020-04-16 23:28:35 +01:00
parent 169f031ce9
commit 8f480cc578

View File

@ -70,7 +70,7 @@ RUN tar xf /build/kernel-headers.tar && \
RUN cd elfutils-$ELFUTILS_VERSION && \
aclocal && \
automake && \
./configure --prefix=/usr CFLAGS=-Wno-strict-aliasing && \
./configure --prefix=/usr CFLAGS="-Wno-strict-aliasing -Wno-error" && \
make -C libelf && make -C libelf install
RUN mkdir -p bcc/build && cd bcc/build && \