Explorar o código

support/docker/Dockerfile: fix typo in tar configure options

Commit 12e9fc1da5d4 ("support/docker: add tar 1.35") added logic to download
and build tar for the host, but mistyped a configure option:

configure: WARNING: unrecognized options: --disable-year2028

Fix that.

Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Peter Korsgaard hai 5 meses
pai
achega
9f7fb95286
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      support/docker/Dockerfile

+ 1 - 1
support/docker/Dockerfile

@@ -80,7 +80,7 @@ RUN curl -sfL https://ftpmirror.gnu.org/tar/tar-${TAR_VERSION}.tar.xz | \
     tar -Jx -C /tmp && \
     cd /tmp/tar-${TAR_VERSION} && \
     FORCE_UNSAFE_CONFIGURE=1 ./configure \
-        --disable-year2028 && \
+        --disable-year2038 && \
     make && \
     make install && \
     rm -rf /tmp/tar-${TAR_VERSION}