mirror of
https://github.com/python/cpython.git
synced 2025-11-11 14:44:57 +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
|
done
|
||||||
$(INSTALL_PROGRAM) python$(EXE) $(BINDIR)/python$(VERSION)$(EXE)
|
$(INSTALL_PROGRAM) python$(EXE) $(BINDIR)/python$(VERSION)$(EXE)
|
||||||
@DGUX_IS_BROKEN@
|
@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
|
# Install the manual page
|
||||||
maninstall:
|
maninstall:
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue