diff options
-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: |