diff options
author | Guido van Rossum <guido@python.org> | 1997-12-19 23:02:22 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1997-12-19 23:02:22 (GMT) |
commit | 8b0d95f06e8912ad36bfefb11c8ab0030acec5a6 (patch) | |
tree | d0d3eedeca1f5cdff2560b5633f66309dc5c6734 /Makefile.in | |
parent | 12501953e0d4a7f6d161fa6813d5a787b0ddf152 (diff) | |
download | cpython-8b0d95f06e8912ad36bfefb11c8ab0030acec5a6.zip cpython-8b0d95f06e8912ad36bfefb11c8ab0030acec5a6.tar.gz cpython-8b0d95f06e8912ad36bfefb11c8ab0030acec5a6.tar.bz2 |
Oops, tiny fix for the DGUX rule when installing -- don't fail when
libpython$(VERSION).so doesn't exist.
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in index 163dc17..9a4d29c 100644 --- a/Makefile.in +++ b/Makefile.in @@ -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: |