]> granicus.if.org Git - python/commitdiff
Issue #25696: Don't ignore errors in 'make bininstall' on creating $(LIBPC) directory
authorVictor Stinner <victor.stinner@gmail.com>
Sun, 13 Dec 2015 20:25:42 +0000 (21:25 +0100)
committerVictor Stinner <victor.stinner@gmail.com>
Sun, 13 Dec 2015 20:25:42 +0000 (21:25 +0100)
Makefile.pre.in

index 3a28e2e05aceaf35da7b7b89f77a04d540420f40..9404f5fe4412428f75b74d8551e355bf39337f14 100644 (file)
@@ -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