aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Albinus2021-03-07 10:44:12 +0100
committerMichael Albinus2021-03-07 10:44:12 +0100
commit83fa649e02367baa88bb31ddc2c75c75fb0b0599 (patch)
tree165bdc19c28acafefc803d708b299e89e6fb2ced
parent468bb5ab7f949441f68c4133fcd5292dfbbfd83d (diff)
downloademacs-83fa649e02367baa88bb31ddc2c75c75fb0b0599.tar.gz
emacs-83fa649e02367baa88bb31ddc2c75c75fb0b0599.zip
Adapt Dockerfile.emba according to recent configure changes
* test/infra/Dockerfile.emba: Remove "--without-makeinfo" from configure. Add "lisp" to make.
-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 && \
40COPY . /checkout 40COPY . /checkout
41WORKDIR /checkout 41WORKDIR /checkout
42RUN ./autogen.sh autoconf 42RUN ./autogen.sh autoconf
43RUN ./configure --without-makeinfo 43RUN ./configure
44RUN make -j4 bootstrap 44RUN make -j4 bootstrap
45RUN make -j4 45RUN make -j4 lisp
46 46
47FROM emacs-base as emacs-filenotify-gio 47FROM emacs-base as emacs-filenotify-gio
48 48
@@ -53,9 +53,9 @@ RUN apt-get update && \
53COPY . /checkout 53COPY . /checkout
54WORKDIR /checkout 54WORKDIR /checkout
55RUN ./autogen.sh autoconf 55RUN ./autogen.sh autoconf
56RUN ./configure --without-makeinfo --with-file-notification=gfile 56RUN ./configure --with-file-notification=gfile
57RUN make bootstrap 57RUN make -j4 bootstrap
58RUN make -j4 58RUN make -j4 lisp
59 59
60FROM emacs-base as emacs-gnustep 60FROM emacs-base as emacs-gnustep
61 61
@@ -66,6 +66,6 @@ RUN apt-get update && \
66COPY . /checkout 66COPY . /checkout
67WORKDIR /checkout 67WORKDIR /checkout
68RUN ./autogen.sh autoconf 68RUN ./autogen.sh autoconf
69RUN ./configure --without-makeinfo --with-ns 69RUN ./configure --with-ns
70RUN make bootstrap 70RUN make -j4 bootstrap
71RUN make -j4 71RUN make -j4 lisp