diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2015-12-13 20:26:17 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2015-12-13 20:26:17 (GMT) |
commit | 8de795f4d2bf766214f64cd0000721e046f9e7e8 (patch) | |
tree | 056b551d1c25b6910e0e4b34f0836f2f8b4c0aff /Makefile.pre.in | |
parent | c2021558ef6d813d483298cdf637de78225dc0f2 (diff) | |
download | cpython-8de795f4d2bf766214f64cd0000721e046f9e7e8.zip cpython-8de795f4d2bf766214f64cd0000721e046f9e7e8.tar.gz cpython-8de795f4d2bf766214f64cd0000721e046f9e7e8.tar.bz2 |
Issue #25696: Don't ignore errors in 'make bininstall' on creating $(LIBPC) directory
Diffstat (limited to 'Makefile.pre.in')
-rw-r--r-- | Makefile.pre.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.pre.in b/Makefile.pre.in index e659d75..51ab6f1 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 |