Commit 8e29a59b authored by Guido van Rossum's avatar Guido van Rossum

Skip directories when installing library files; this avoids problems

when test/output is found (/usr/bin/install chokes on this; no idea
why install-sh doesn't).
parent 3593e5c4
...@@ -308,6 +308,7 @@ libinstall: python $(srcdir)/Lib/$(PLATDIR) ...@@ -308,6 +308,7 @@ libinstall: python $(srcdir)/Lib/$(PLATDIR)
*.py[co]) ;; \ *.py[co]) ;; \
*~) ;; \ *~) ;; \
*) \ *) \
if test -d $$i; then continue; fi; \
if test -x $$i; then \ if test -x $$i; then \
echo $(INSTALL_PROGRAM) $$i $$b; \ echo $(INSTALL_PROGRAM) $$i $$b; \
$(INSTALL_PROGRAM) $$i $$b; \ $(INSTALL_PROGRAM) $$i $$b; \
......
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