[Python-checkins] cpython (3.5): Issue #25696: Don't ignore errors in 'make bininstall' on creating $(LIBPC)

victor.stinner python-checkins at python.org
Sun Dec 13 15:27:03 EST 2015


https://hg.python.org/cpython/rev/d28268c47421
changeset:   99550:d28268c47421
branch:      3.5
parent:      99547:87d96b349ff5
user:        Victor Stinner <victor.stinner at gmail.com>
date:        Sun Dec 13 21:26:17 2015 +0100
summary:
  Issue #25696: Don't ignore errors in 'make bininstall' on creating $(LIBPC) directory

files:
  Makefile.pre.in |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Makefile.pre.in b/Makefile.pre.in
--- a/Makefile.pre.in
+++ b/Makefile.pre.in
@@ -1110,7 +1110,7 @@
 	fi
 
 bininstall: altbininstall
-	-if test ! -d $(DESTDIR)$(LIBPC); then \
+	if test ! -d $(DESTDIR)$(LIBPC); then \
 		echo "Creating directory $(LIBPC)"; \
 		$(INSTALL) -d -m $(DIRMODE) $(DESTDIR)$(LIBPC); \
 	fi

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list