diff options
author | Guido van Rossum <guido@python.org> | 1997-12-02 19:18:27 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1997-12-02 19:18:27 (GMT) |
commit | 8e29a59b39c9264fac6551aa6a67eeb7fa1b675e (patch) | |
tree | ceba97fd34540d541bf8c5885fff29c266ce60a8 /Makefile.in | |
parent | 3593e5c4c356fcf4a5c2438519dd9a6cf54a4bcb (diff) | |
download | cpython-8e29a59b39c9264fac6551aa6a67eeb7fa1b675e.zip cpython-8e29a59b39c9264fac6551aa6a67eeb7fa1b675e.tar.gz cpython-8e29a59b39c9264fac6551aa6a67eeb7fa1b675e.tar.bz2 |
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).
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Makefile.in b/Makefile.in index 564dce2..1affa8a 100644 --- a/Makefile.in +++ b/Makefile.in @@ -308,6 +308,7 @@ libinstall: python $(srcdir)/Lib/$(PLATDIR) *.py[co]) ;; \ *~) ;; \ *) \ + if test -d $$i; then continue; fi; \ if test -x $$i; then \ echo $(INSTALL_PROGRAM) $$i $$b; \ $(INSTALL_PROGRAM) $$i $$b; \ |