diff options
-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 |