]> git.eshelyaron.com Git - emacs.git/commitdiff
Adapt Dockerfile.emba according to recent configure changes
authorMichael Albinus <michael.albinus@gmx.de>
Sun, 7 Mar 2021 09:44:12 +0000 (10:44 +0100)
committerMichael Albinus <michael.albinus@gmx.de>
Sun, 7 Mar 2021 09:44:12 +0000 (10:44 +0100)
* test/infra/Dockerfile.emba: Remove "--without-makeinfo" from
configure.  Add "lisp" to make.

test/infra/Dockerfile.emba

index 421264db9c922a2dfee2d869387b9ccaa271645d..be684d672a5e9c4ce615ea2f42ba0d0ca79d4388 100644 (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