[Python-checkins] cpython (2.7): 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/94910d210ef4
changeset:   99549:94910d210ef4
branch:      2.7
parent:      99546:c03ef448b5b2
user:        Victor Stinner <victor.stinner at gmail.com>
date:        Sun Dec 13 21:25:42 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
@@ -914,7 +914,7 @@
 #  $(PYTHON) -> python2 -> python$(VERSION))
 # Also create equivalent chains for other installed files
 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