Commit 55f316c3 authored by Hye-Shik Chang's avatar Hye-Shik Chang

Skip to install files for empty directories; to name it, Lib/lib-old.

BSD make stops the build when it tries to expand wild cards on empty
directories.
parent badc0865
......@@ -720,6 +720,9 @@ libinstall: $(BUILDPYTHON) $(srcdir)/Lib/$(PLATDIR)
a=$(srcdir)/Lib/$$d; \
if test ! -d $$a; then continue; else true; fi; \
b=$(LIBDEST)/$$d; \
if [ `ls $$a | wc -l` -lt 1 ]; then \
continue; \
fi; \
for i in $$a/*; \
do \
case $$i in \
......
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