changeset: 99549:94910d210ef4 branch: 2.7 parent: 99546:c03ef448b5b2 user: Victor Stinner date: Sun Dec 13 21:25:42 2015 +0100 files: Makefile.pre.in description: Issue #25696: Don't ignore errors in 'make bininstall' on creating $(LIBPC) directory diff -r c03ef448b5b2 -r 94910d210ef4 Makefile.pre.in --- a/Makefile.pre.in Sun Dec 13 21:19:28 2015 +0100 +++ b/Makefile.pre.in Sun Dec 13 21:25:42 2015 +0100 @@ -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