diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2015-12-13 20:25:42 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2015-12-13 20:25:42 (GMT) |
commit | 04627633edb723efb74154c7ce988c7f93b11769 (patch) | |
tree | de41c3c132b9e0adcbb448a8f8f1a8667992daec | |
parent | 15a6c4239c7c71d896b6f0b4edad2fb8643db99d (diff) | |
download | cpython-04627633edb723efb74154c7ce988c7f93b11769.zip cpython-04627633edb723efb74154c7ce988c7f93b11769.tar.gz cpython-04627633edb723efb74154c7ce988c7f93b11769.tar.bz2 |
Issue #25696: Don't ignore errors in 'make bininstall' on creating $(LIBPC) directory
-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 3a28e2e..9404f5f 100644 --- a/Makefile.pre.in +++ b/Makefile.pre.in @@ -914,7 +914,7 @@ $(DESTSHARED): # $(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 |