Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 08157f8 commit bae6523Copy full SHA for bae6523
1 file changed
Modules/Makefile.pre.in
@@ -114,11 +114,13 @@ $(ASHAREDMODULE)$(SO): $(ASHAREDMODULESOBS)
114
# To deal with the conflict between signalmodule.o and
115
# sigcheck.o+intrcheck.o, we remove the latter two if we have the former.
116
add2lib: $(OBJS)
117
+ -for i in $(OBJS); do \
118
+ if test "$$i" = "signalmodule.o"; then \
119
+ ar d $(LIBRARY) sigcheck.o intrcheck.o 2>/dev/null; \
120
+ break; \
121
+ fi; \
122
+ done
123
$(AR) cr $(LIBRARY) $(OBJS)
- -if ar x $(LIBRARY) signalmodule.o 2>/dev/null; \
- then \
- ar d $(LIBRARY) sigcheck.o intrcheck.o 2>/dev/null; true; \
- else true; fi
124
touch add2lib
125
126
# This target is used by the master Makefile to link the final binary.
0 commit comments