emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

master 83fa649: Adapt Dockerfile.emba according to recent configure chan


From: Michael Albinus
Subject: master 83fa649: Adapt Dockerfile.emba according to recent configure changes
Date: Sun, 7 Mar 2021 04:44:22 -0500 (EST)

branch: master
commit 83fa649e02367baa88bb31ddc2c75c75fb0b0599
Author: Michael Albinus <michael.albinus@gmx.de>
Commit: Michael Albinus <michael.albinus@gmx.de>

    Adapt Dockerfile.emba according to recent configure changes
    
    * test/infra/Dockerfile.emba: Remove "--without-makeinfo" from
    configure.  Add "lisp" to make.
---
 test/infra/Dockerfile.emba | 16 ++++++++--------
 1 file changed, 8 insertions(+), 8 deletions(-)

diff --git a/test/infra/Dockerfile.emba b/test/infra/Dockerfile.emba
index 421264d..be684d6 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



reply via email to

[Prev in Thread] Current Thread [Next in Thread]