emacs-bug-tracker
[Top][All Lists]
Advanced

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

[debbugs-tracker] bug#22822: closed (Use MKDIR_P instead of mkdir --pare


From: GNU bug Tracking System
Subject: [debbugs-tracker] bug#22822: closed (Use MKDIR_P instead of mkdir --parents in test/Makefile.in)
Date: Sun, 28 Feb 2016 03:03:02 +0000

Your message dated Sat, 27 Feb 2016 22:02:24 -0500
with message-id <address@hidden>
and subject line Re: bug#22822: Use MKDIR_P instead of mkdir --parents in 
test/Makefile.in
has caused the debbugs.gnu.org bug report #22822,
regarding Use MKDIR_P instead of mkdir --parents in test/Makefile.in
to be marked as done.

(If you believe you have received this mail in error, please contact
address@hidden)


-- 
22822: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=22822
GNU Bug Tracking System
Contact address@hidden with problems
--- Begin Message --- Subject: Use MKDIR_P instead of mkdir --parents in test/Makefile.in Date: Fri, 26 Feb 2016 11:55:54 -0500
Some platforms don't support the long options for mkdir.  Seems there
is a variable, MKDIR_P, set by Autoconf that is used elsewhere in the
Emacs build system that could be used instead.  Patch is attached and
quoted below.

Thanks,
Aaron

---
 test/Makefile.in | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/test/Makefile.in b/test/Makefile.in
index b5954df..beb3ff9 100644
--- a/test/Makefile.in
+++ b/test/Makefile.in
@@ -29,6 +29,7 @@
 ### Code:

 SHELL = @SHELL@
+MKDIR_P = @MKDIR_P@

 srcdir = @srcdir@
 VPATH = $(srcdir)
@@ -110,7 +111,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}

--

Attachment: 0001-Use-MKDIR_P-instead-of-mkdir-parents.patch
Description: Binary data


--- End Message ---
--- Begin Message --- Subject: Re: bug#22822: Use MKDIR_P instead of mkdir --parents in test/Makefile.in Date: Sat, 27 Feb 2016 22:02:24 -0500 User-agent: Gnus (www.gnus.org), GNU Emacs (www.gnu.org/software/emacs/)
Thanks.


--- End Message ---

reply via email to

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