]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Oops, tiny fix for the DGUX rule when installing -- don't fail when
authorGuido van Rossum <guido@python.org>
Fri, 19 Dec 1997 23:02:22 +0000 (23:02 +0000)
committerGuido van Rossum <guido@python.org>
Fri, 19 Dec 1997 23:02:22 +0000 (23:02 +0000)
libpython$(VERSION).so doesn't exist.

Makefile.in

index 163dc17dc05422b2fca6db38dd94c2e4f83391fb..9a4d29c2a7202ca3ac3f1af469330f99659593cb 100644 (file)
@@ -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: