aboutsummaryrefslogtreecommitdiff
path: root/jammy-amd64-tcwg-base/Dockerfile
diff options
context:
space:
mode:
Diffstat (limited to 'jammy-amd64-tcwg-base/Dockerfile')
-rw-r--r--jammy-amd64-tcwg-base/Dockerfile14
1 files changed, 11 insertions, 3 deletions
diff --git a/jammy-amd64-tcwg-base/Dockerfile b/jammy-amd64-tcwg-base/Dockerfile
index 664e16c1..b4401bc7 100644
--- a/jammy-amd64-tcwg-base/Dockerfile
+++ b/jammy-amd64-tcwg-base/Dockerfile
@@ -274,7 +274,7 @@ RUN cd /tmp \
# libtool-2.2.7a which is not available either. Build succeeds in
# with --enable-maintainer-mode and the system versions of libtool and
# gettext, so rely on them.
-RUN autoconf_ver=autoconf-2.69 \
+RUN autoconf_version=2.69 autoconf_ver=autoconf-${autoconf_version} \
&& cd /usr/local \
&& wget https://ftp.gnu.org/gnu/autoconf/${autoconf_ver}.tar.xz \
&& cd /tmp \
@@ -284,8 +284,12 @@ RUN autoconf_ver=autoconf-2.69 \
&& cd build \
&& ../configure --prefix=/usr/local/${autoconf_ver} \
&& make install \
+ && cd /usr/local/${autoconf_ver}/bin \
+ && for f in autoconf autoheader autom4te autoreconf autoscan autoupdate ifnames; do \
+ ln -sv $f $f-${autoconf_version} ; \
+ done \
&& rm -f /usr/local/${autoconf_ver}.tar.xz \
- && automake_ver=automake-1.15.1 \
+ && automake_version=1.15.1 automake_ver=automake-${automake_version} \
&& cd /usr/local \
&& wget https://ftp.gnu.org/gnu/automake/${automake_ver}.tar.xz \
&& cd /tmp \
@@ -295,6 +299,10 @@ RUN autoconf_ver=autoconf-2.69 \
&& cd build \
&& ../configure --prefix=/usr/local/${automake_ver} \
&& make install \
+ && cd /usr/local/${automake_ver}/bin \
+ && for f in aclocal automake; do \
+ ln -sv $f $f-${automake_version} ; \
+ done \
&& rm -f /usr/local/${automake_ver}.tar.xz \
&& rm -rf /tmp/${autoconf_ver} /tmp/${automake_ver}
COPY home-data/ /home-data/
@@ -319,4 +327,4 @@ VOLUME /tmp
EXPOSE 22
CMD ["/usr/sbin/sshd", "-D"]
# This is a dummy comment to trigger a base image rebuild.
-# checksum: a24fb905a1ba576d8d02351a6c47aa29
+# checksum: 6abe91c402501929753104a36a53da66