Skip to content

Commit fca25bf

Browse files
committed
dante: add GUESS_FILE to support aarch64 (#211)
1 parent 059d877 commit fca25bf

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

dante/Dockerfile

+4
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,9 @@ ARG DANTE_FILE=dante.tar.gz
1212
ARG DANTE_TEMP=dante
1313
ARG DANTE_DEPS="build-essential curl"
1414

15+
ARG GUESS_URL="http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.guess;hb=HEAD"
16+
ARG GUESS_FILE=config.guess
17+
1518
RUN set -xe \
1619
&& apt-get update \
1720
&& apt-get install -y $DANTE_DEPS \
@@ -20,6 +23,7 @@ RUN set -xe \
2023
&& curl -sSL $DANTE_URL -o $DANTE_FILE \
2124
&& echo "$DANTE_SHA1 *$DANTE_FILE" | sha1sum -c \
2225
&& tar xzf $DANTE_FILE --strip 1 \
26+
&& curl -sSL "$GUESS_URL" -o $GUESS_FILE \
2327
&& ./configure \
2428
&& make install \
2529
&& cd .. \

0 commit comments

Comments
 (0)