summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFred Drake <fdrake@acm.org>2001-07-17 16:48:55 (GMT)
committerFred Drake <fdrake@acm.org>2001-07-17 16:48:55 (GMT)
commit16649a803b154ce7fd667f7e4211eb17091fe8b9 (patch)
tree98dbb0fc4297ae4b691f240beaa86b3ea9fa3368
parent3cae66bdbcbc46d1c7a522a2a48c8c23ba199b76 (diff)
downloadcpython-16649a803b154ce7fd667f7e4211eb17091fe8b9.zip
cpython-16649a803b154ce7fd667f7e4211eb17091fe8b9.tar.gz
cpython-16649a803b154ce7fd667f7e4211eb17091fe8b9.tar.bz2
Make the syntax for compound command lines more portable (nmake, CygWin).
This is probably not sufficient by itself for the info generation, and is being done mostly to keep the style consistent with additional patches that will be applied to Doc/Makefile.
-rw-r--r--Doc/info/Makefile16
1 files changed, 8 insertions, 8 deletions
diff --git a/Doc/info/Makefile b/Doc/info/Makefile
index 24d6057..a2c44d3 100644
--- a/Doc/info/Makefile
+++ b/Doc/info/Makefile
@@ -49,25 +49,25 @@ clobber: clean
# in case we haven't already built the HTML:
$(HTMLDIR)/api/api.html:
- (cd $(HTMLDIR); $(MAKE) api)
+ cd $(HTMLDIR) && $(MAKE) api
$(HTMLDIR)/ext/ext.html:
- (cd $(HTMLDIR); $(MAKE) ext)
+ cd $(HTMLDIR) && $(MAKE) ext
$(HTMLDIR)/lib/lib.html:
- (cd $(HTMLDIR); $(MAKE) lib)
+ cd $(HTMLDIR) && $(MAKE) lib
$(HTMLDIR)/mac/mac.html:
- (cd $(HTMLDIR); $(MAKE) mac)
+ cd $(HTMLDIR) && $(MAKE) mac
$(HTMLDIR)/ref/ref.html:
- (cd $(HTMLDIR); $(MAKE) ref)
+ cd $(HTMLDIR) && $(MAKE) ref
$(HTMLDIR)/tut/tut.html:
- (cd $(HTMLDIR); $(MAKE) tut)
+ cd $(HTMLDIR) && $(MAKE) tut
$(HTMLDIR)/dist/dist.html:
- (cd $(HTMLDIR); $(MAKE) dist)
+ cd $(HTMLDIR) && $(MAKE) dist
$(HTMLDIR)/inst/inst.html:
- (cd $(HTMLDIR); $(MAKE) inst)
+ cd $(HTMLDIR) && $(MAKE) inst