1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-24 19:03:29 +00:00

Adapt Dockerfile.emba according to recent configure changes

* test/infra/Dockerfile.emba: Remove "--without-makeinfo" from
configure.  Add "lisp" to make.
This commit is contained in:
Michael Albinus 2021-03-07 10:44:12 +01:00
parent 468bb5ab7f
commit 83fa649e02

View File

@ -40,9 +40,9 @@ RUN apt-get update && \
COPY . /checkout
WORKDIR /checkout
RUN ./autogen.sh autoconf
RUN ./configure --without-makeinfo
RUN ./configure
RUN make -j4 bootstrap
RUN make -j4
RUN make -j4 lisp
FROM emacs-base as emacs-filenotify-gio
@ -53,9 +53,9 @@ RUN apt-get update && \
COPY . /checkout
WORKDIR /checkout
RUN ./autogen.sh autoconf
RUN ./configure --without-makeinfo --with-file-notification=gfile
RUN make bootstrap
RUN make -j4
RUN ./configure --with-file-notification=gfile
RUN make -j4 bootstrap
RUN make -j4 lisp
FROM emacs-base as emacs-gnustep
@ -66,6 +66,6 @@ RUN apt-get update && \
COPY . /checkout
WORKDIR /checkout
RUN ./autogen.sh autoconf
RUN ./configure --without-makeinfo --with-ns
RUN make bootstrap
RUN make -j4
RUN ./configure --with-ns
RUN make -j4 bootstrap
RUN make -j4 lisp