diff options
| author | Michael Albinus | 2021-03-07 10:44:12 +0100 |
|---|---|---|
| committer | Michael Albinus | 2021-03-07 10:44:12 +0100 |
| commit | 83fa649e02367baa88bb31ddc2c75c75fb0b0599 (patch) | |
| tree | 165bdc19c28acafefc803d708b299e89e6fb2ced | |
| parent | 468bb5ab7f949441f68c4133fcd5292dfbbfd83d (diff) | |
| download | emacs-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.emba | 16 |
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 && \ | |||
| 40 | COPY . /checkout | 40 | COPY . /checkout |
| 41 | WORKDIR /checkout | 41 | WORKDIR /checkout |
| 42 | RUN ./autogen.sh autoconf | 42 | RUN ./autogen.sh autoconf |
| 43 | RUN ./configure --without-makeinfo | 43 | RUN ./configure |
| 44 | RUN make -j4 bootstrap | 44 | RUN make -j4 bootstrap |
| 45 | RUN make -j4 | 45 | RUN make -j4 lisp |
| 46 | 46 | ||
| 47 | FROM emacs-base as emacs-filenotify-gio | 47 | FROM emacs-base as emacs-filenotify-gio |
| 48 | 48 | ||
| @@ -53,9 +53,9 @@ RUN apt-get update && \ | |||
| 53 | COPY . /checkout | 53 | COPY . /checkout |
| 54 | WORKDIR /checkout | 54 | WORKDIR /checkout |
| 55 | RUN ./autogen.sh autoconf | 55 | RUN ./autogen.sh autoconf |
| 56 | RUN ./configure --without-makeinfo --with-file-notification=gfile | 56 | RUN ./configure --with-file-notification=gfile |
| 57 | RUN make bootstrap | 57 | RUN make -j4 bootstrap |
| 58 | RUN make -j4 | 58 | RUN make -j4 lisp |
| 59 | 59 | ||
| 60 | FROM emacs-base as emacs-gnustep | 60 | FROM emacs-base as emacs-gnustep |
| 61 | 61 | ||
| @@ -66,6 +66,6 @@ RUN apt-get update && \ | |||
| 66 | COPY . /checkout | 66 | COPY . /checkout |
| 67 | WORKDIR /checkout | 67 | WORKDIR /checkout |
| 68 | RUN ./autogen.sh autoconf | 68 | RUN ./autogen.sh autoconf |
| 69 | RUN ./configure --without-makeinfo --with-ns | 69 | RUN ./configure --with-ns |
| 70 | RUN make bootstrap | 70 | RUN make -j4 bootstrap |
| 71 | RUN make -j4 | 71 | RUN make -j4 lisp |