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

libpython$(VERSION).so doesn't exist.
This commit is contained in:
Guido van Rossum 1997-12-19 23:02:22 +00:00
parent 12501953e0
commit 8b0d95f06e

View file

@ -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: