Commit 04627633 authored by Victor Stinner's avatar Victor Stinner

Issue #25696: Don't ignore errors in 'make bininstall' on creating $(LIBPC) directory

parent 15a6c423
......@@ -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
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment