From 8de795f4d2bf766214f64cd0000721e046f9e7e8 Mon Sep 17 00:00:00 2001 From: Victor Stinner Date: Sun, 13 Dec 2015 21:26:17 +0100 Subject: [PATCH] Issue #25696: Don't ignore errors in 'make bininstall' on creating $(LIBPC) directory --- Makefile.pre.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.pre.in b/Makefile.pre.in index e659d7526d7..51ab6f1af2a 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