fixed last second command merge

pull/1867/head
Yuri Astrakhan 2021-12-26 23:50:52 -05:00
parent df4f6b325a
commit 930f04bcff
1 changed files with 2 additions and 2 deletions

View File

@ -149,11 +149,11 @@ ONBUILD RUN echo "Downloading '${GIT_TAG}' from https://github.com/aria2/aria2"
ARG SOURCE GIT_TAG LIBARIA2 ARIA2_STATIC ARG SOURCE GIT_TAG LIBARIA2 ARIA2_STATIC
FROM build_${SOURCE} FROM build_${SOURCE}
RUN cd /aria2 && \ RUN cd /aria2 && \
autoreconf -i \ autoreconf -i && \
export LIBARIA2=${LIBARIA2} && \ export LIBARIA2=${LIBARIA2} && \
export ARIA2_STATIC=${ARIA2_STATIC} && \ export ARIA2_STATIC=${ARIA2_STATIC} && \
./mingw-config && \ ./mingw-config && \
make \ make && \
(test -f /aria2/src/aria2c.exe && $HOST-strip /aria2/src/aria2c.exe) && \ (test -f /aria2/src/aria2c.exe && $HOST-strip /aria2/src/aria2c.exe) && \
(test -f /aria2/src/main.o && $HOST-strip /aria2/src/main.o) (test -f /aria2/src/main.o && $HOST-strip /aria2/src/main.o)