Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
4f46fc6d
Commit
4f46fc6d
authored
Aug 20, 1997
by
Guido van Rossum
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
When we have signalmodule.o, remove intrcheck.o as well as sigcheck.o.
parent
aa61505f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
3 deletions
+4
-3
Modules/Makefile.pre.in
Modules/Makefile.pre.in
+4
-3
No files found.
Modules/Makefile.pre.in
View file @
4f46fc6d
...
...
@@ -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
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment