summaryrefslogtreecommitdiff
path: root/test/infra/Dockerfile.emba
diff options
context:
space:
mode:
authorMichael Albinus <michael.albinus@gmx.de>2021-03-07 10:44:12 +0100
committerMichael Albinus <michael.albinus@gmx.de>2021-03-07 10:44:12 +0100
commit83fa649e02367baa88bb31ddc2c75c75fb0b0599 (patch)
tree165bdc19c28acafefc803d708b299e89e6fb2ced /test/infra/Dockerfile.emba
parent468bb5ab7f949441f68c4133fcd5292dfbbfd83d (diff)
downloademacs-83fa649e02367baa88bb31ddc2c75c75fb0b0599.tar.gz
Adapt Dockerfile.emba according to recent configure changes
* test/infra/Dockerfile.emba: Remove "--without-makeinfo" from configure. Add "lisp" to make.
Diffstat (limited to 'test/infra/Dockerfile.emba')
-rw-r--r--test/infra/Dockerfile.emba16
1 files changed, 8 insertions, 8 deletions
diff --git a/test/infra/Dockerfile.emba b/test/infra/Dockerfile.emba
index 421264db9c9..be684d672a5 100644
--- a/test/infra/Dockerfile.emba
+++ b/test/infra/Dockerfile.emba
@@ -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