diff options
author | Guido van Rossum <guido@python.org> | 1998-08-04 22:53:56 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1998-08-04 22:53:56 (GMT) |
commit | bcc207484a0f8f27a684e11194e7430c0710f66d (patch) | |
tree | 506ce2d793a619a92e78faa89032878ea4a43461 /Modules/Makefile.pre.in | |
parent | 1a8791e0b875df8e9428c2d9969f64e5967ac0b4 (diff) | |
download | cpython-bcc207484a0f8f27a684e11194e7430c0710f66d.zip cpython-bcc207484a0f8f27a684e11194e7430c0710f66d.tar.gz cpython-bcc207484a0f8f27a684e11194e7430c0710f66d.tar.bz2 |
Changes for BeOS, QNX and long long, by Chris Herborth.
Diffstat (limited to 'Modules/Makefile.pre.in')
-rw-r--r-- | Modules/Makefile.pre.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Modules/Makefile.pre.in b/Modules/Makefile.pre.in index 637506f..ca728e0 100644 --- a/Modules/Makefile.pre.in +++ b/Modules/Makefile.pre.in @@ -82,7 +82,7 @@ SHELL= /bin/sh MAKESETUP= $(srcdir)/makesetup -# (The makesetup script inserts all variable definitions found +# (The makesetup script inserts all variable definitions # found in the Setup file just below the following line. # This means that the Setup file can override any of the definitions # given before this point, but not any given below. @@ -112,7 +112,7 @@ all: $(OBJS) add2lib: $(OBJS) -for i in $(OBJS); do \ if test "$$i" = "signalmodule.o"; then \ - ar d $(LIBRARY) sigcheck.o intrcheck.o 2>/dev/null; \ + $(AR) d $(LIBRARY) sigcheck.o intrcheck.o 2>/dev/null; \ break; \ fi; \ done |