瀏覽代碼

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 5 月之前
父節點
當前提交
9f7fb95286
共有 1 個文件被更改,包括 1 次插入1 次删除
  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}