summaryrefslogtreecommitdiff
path: root/Makefile.pre.in
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2015-12-13 21:26:17 +0100
committerVictor Stinner <victor.stinner@gmail.com>2015-12-13 21:26:17 +0100
commit8de795f4d2bf766214f64cd0000721e046f9e7e8 (patch)
tree056b551d1c25b6910e0e4b34f0836f2f8b4c0aff /Makefile.pre.in
parentc2021558ef6d813d483298cdf637de78225dc0f2 (diff)
downloadcpython-git-8de795f4d2bf766214f64cd0000721e046f9e7e8.tar.gz
Issue #25696: Don't ignore errors in 'make bininstall' on creating $(LIBPC) directory
Diffstat (limited to 'Makefile.pre.in')
-rw-r--r--Makefile.pre.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.pre.in b/Makefile.pre.in
index e659d7526d..51ab6f1af2 100644
--- a/Makefile.pre.in
+++ b/Makefile.pre.in
@@ -1110,7 +1110,7 @@ altbininstall: $(BUILDPYTHON) @FRAMEWORKPYTHONW@
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