* test/infra/Dockerfile.emba: Remove "--without-makeinfo" from
configure. Add "lisp" to make.
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
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
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