]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
When we have signalmodule.o, remove intrcheck.o as well as sigcheck.o.
authorGuido van Rossum <guido@python.org>
Wed, 20 Aug 1997 22:45:52 +0000 (22:45 +0000)
committerGuido van Rossum <guido@python.org>
Wed, 20 Aug 1997 22:45:52 +0000 (22:45 +0000)
Modules/Makefile.pre.in

index 6c5ddb1909303a537640a06e8b1e0b30a6df3c1a..42e6601a6f7aabf6012150d8a7c0b998d8f3df1f 100644 (file)
@@ -111,12 +111,13 @@ $(ASHAREDMODULE)$(SO): $(ASHAREDMODULESOBS)
        $(ASHAREDMODULESEXTRA)
 
 # This target is used by the master Makefile to add the objects to the library.
-# To deal with the conflict between signalmodule.o and sigcheck.o,
-# we remove the latter if we have the former.
+# To deal with the conflict between signalmodule.o and
+# sigcheck.o+intrcheck.o, we remove the latter two if we have the former.
 add2lib:       $(OBJS)
                $(AR) cr $(LIBRARY) $(OBJS)
                -if ar x $(LIBRARY) signalmodule.o 2>/dev/null; \
-               then ar d $(LIBRARY) sigcheck.o 2>/dev/null; true; \
+               then \
+                 ar d $(LIBRARY) sigcheck.o intrcheck.o 2>/dev/null; true; \
                else true; fi
                touch add2lib