util/docker: work around toolchain autotools issue
The patches added to `make` require that we use automake & aclocal to rebuild the configuration, but version 1.15 of autotools is expected. After debian sid updated to autotools 1.16, the tools can't be located. We'll just pretend to have version 1.15 with symbolic links. This doesn't seem to be a good solution but gets the job done. Change-Id: I9f616b96e728106e7adf321325caa06808e064c2 Signed-off-by: Martin Roth <martinr@coreboot.org> Signed-off-by: Nico Huber <nico.h@gmx.de> Reviewed-on: https://review.coreboot.org/c/coreboot/+/28544 Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net> Reviewed-by: Patrick Georgi <pgeorgi@google.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:
parent
b866610156
commit
b0fe89d31b
|
@ -69,7 +69,9 @@ RUN \
|
|||
wget \
|
||||
xz-utils \
|
||||
zlib1g-dev \
|
||||
&& apt-get clean
|
||||
&& apt-get clean \
|
||||
&& ln -s /usr/bin/automake /usr/bin/automake-1.15 \
|
||||
&& ln -s /usr/bin/aclocal /usr/bin/aclocal-1.15
|
||||
|
||||
RUN \
|
||||
cd /root && \
|
||||
|
|
Loading…
Reference in New Issue