summaryrefslogtreecommitdiffstats
path: root/Makefile.pre.in
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2001-04-09 22:23:22 (GMT)
committerGuido van Rossum <guido@python.org>2001-04-09 22:23:22 (GMT)
commit4e6a7a626de58887c270461a546cde5f435e6178 (patch)
tree504b5987bee18be04bf37a4876700c1b89b7aa7e /Makefile.pre.in
parentdbdb28e8be50608287b3cfaf8427d7e602f22c2b (diff)
downloadcpython-4e6a7a626de58887c270461a546cde5f435e6178.zip
cpython-4e6a7a626de58887c270461a546cde5f435e6178.tar.gz
cpython-4e6a7a626de58887c270461a546cde5f435e6178.tar.bz2
Make on Alpha Tru64 5.1 (as installed on the SF compile farm) doesn't
think that a command starting with '#' is a comment, so move the one comment in such a position (in the rule for building $(LIBRARY)) to a harmless position.
Diffstat (limited to 'Makefile.pre.in')
-rw-r--r--Makefile.pre.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.pre.in b/Makefile.pre.in
index 341c3c9..0cc6ee8 100644
--- a/Makefile.pre.in
+++ b/Makefile.pre.in
@@ -297,9 +297,9 @@ buildno: $(PARSER_OBJS) \
else echo 1 >buildno; fi
# Build static library
+# avoid long command lines, same as LIBRARY_OBJS
$(LIBRARY): $(LIBRARY_OBJS)
-rm -f $@
- # avoid long command lines, same as LIBRARY_OBJS
$(AR) cr $@ Modules/getbuildinfo.o
$(AR) cr $@ $(PARSER_OBJS)
$(AR) cr $@ $(OBJECT_OBJS)