From 8b0d95f06e8912ad36bfefb11c8ab0030acec5a6 Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Fri, 19 Dec 1997 23:02:22 +0000 Subject: Oops, tiny fix for the DGUX rule when installing -- don't fail when libpython$(VERSION).so doesn't exist. --- Makefile.in | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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: -- cgit v0.12