Kaydet (Commit) 8de795f4 authored tarafından Victor Stinner's avatar Victor Stinner

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

üst c2021558
......@@ -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
......
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