emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] master b829c9e: Don't make assumptions about mkdir. (Bug#2


From: Glenn Morris
Subject: [Emacs-diffs] master b829c9e: Don't make assumptions about mkdir. (Bug#22822)
Date: Sun, 28 Feb 2016 03:02:04 +0000

branch: master
commit b829c9e15b244e12a98e5dc75c8009d55b60bfab
Author: Aaron S. Hawley <address@hidden>
Commit: Glenn Morris <address@hidden>

    Don't make assumptions about mkdir.  (Bug#22822)
    
    * test/Makefile.in (MKDIR_P): New, set by configure.
    (%.log): Use MKDIR_P.
---
 test/Makefile.in |    4 +++-
 1 files changed, 3 insertions(+), 1 deletions(-)

diff --git a/test/Makefile.in b/test/Makefile.in
index b5954df..a5755fd 100644
--- a/test/Makefile.in
+++ b/test/Makefile.in
@@ -33,6 +33,8 @@ SHELL = @SHELL@
 srcdir = @srcdir@
 VPATH = $(srcdir)
 
+MKDIR_P = @MKDIR_P@
+
 SEPCHAR = @SEPCHAR@
 
 # We never change directory before running Emacs, so a relative file
@@ -110,7 +112,7 @@ endif
        fi; \
        echo Testing $$loadfile; \
        stat=OK ; \
-       mkdir --parents $(dir $@) ; \
+       ${MKDIR_P} $(dir $@) ; \
        $(emacs) -l ert -l $$loadfile \
          --eval "(ert-run-tests-batch-and-exit ${SELECTOR_ACTUAL})" 
${WRITE_LOG}
 



reply via email to

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