diff options
author | Michael Albinus <michael.albinus@gmx.de> | 2021-03-07 11:43:27 +0100 |
---|---|---|
committer | Michael Albinus <michael.albinus@gmx.de> | 2021-03-07 11:43:27 +0100 |
commit | 564b6391f809b3fe0807825b219f2534f2196630 (patch) | |
tree | 6b64a8b624fc5462b49785be9dc8ad9a3df27930 /test/infra/Dockerfile.emba | |
parent | 30489f4264d338b20af5f8261b190c23b4d55ff4 (diff) | |
download | emacs-564b6391f809b3fe0807825b219f2534f2196630.tar.gz emacs-564b6391f809b3fe0807825b219f2534f2196630.tar.bz2 emacs-564b6391f809b3fe0807825b219f2534f2196630.zip |
; * test/infra/Dockerfile.emba: Fix last change.
Diffstat (limited to 'test/infra/Dockerfile.emba')
-rw-r--r-- | test/infra/Dockerfile.emba | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/infra/Dockerfile.emba b/test/infra/Dockerfile.emba index 4294a3ce622..63a48b4ef6f 100644 --- a/test/infra/Dockerfile.emba +++ b/test/infra/Dockerfile.emba @@ -39,7 +39,7 @@ RUN apt-get update && \ COPY . /checkout WORKDIR /checkout -RUN touch info/emacs +RUN mkdir info && touch info/emacs RUN ./autogen.sh autoconf RUN ./configure RUN make -j4 bootstrap @@ -53,7 +53,7 @@ RUN apt-get update && \ COPY . /checkout WORKDIR /checkout -RUN touch info/emacs +RUN mkdir info && touch info/emacs RUN ./autogen.sh autoconf RUN ./configure --with-file-notification=gfile RUN make -j4 bootstrap @@ -67,7 +67,7 @@ RUN apt-get update && \ COPY . /checkout WORKDIR /checkout -RUN touch info/emacs +RUN mkdir info && touch info/emacs RUN ./autogen.sh autoconf RUN ./configure --with-ns RUN make -j4 bootstrap |