mirror of
https://github.com/python/cpython.git
synced 2025-11-01 18:51:43 +00:00
Oops, tiny fix for the DGUX rule when installing -- don't fail when
libpython$(VERSION).so doesn't exist.
This commit is contained in:
parent
12501953e0
commit
8b0d95f06e
1 changed files with 4 additions and 1 deletions
|
|
@ -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:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue