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

Oops, tiny fix for the DGUX rule when installing -- don't fail when

libpython$(VERSION).so doesn't exist.
parent 12501953
......@@ -253,7 +253,10 @@ altbininstall: python
done
$(INSTALL_PROGRAM) python$(EXE) $(BINDIR)/python$(VERSION)$(EXE)
@DGUX_IS_BROKEN@
test -f libpython$(VERSION).so && $(INSTALL_DATA) libpython$(VERSION).so $(LIBDIR)
if test -f libpython$(VERSION).so; then \
$(INSTALL_DATA) libpython$(VERSION).so $(LIBDIR); \
else true; \
fi
# Install the manual page
maninstall:
......
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