aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Monnier <[email protected]>2009-02-28 23:07:42 +0000
committerStefan Monnier <[email protected]>2009-02-28 23:07:42 +0000
commit2ae83832138a30948bc165acf995ec6986572221 (patch)
tree91476f4d4423b169485d4ce1b528be5a92e5f004
parent8f0e19afc870cd6a049f734f51db66bfa7fa55d0 (diff)
(src): Fix last change so the first `cd' doesn't affect the second.
-rw-r--r--ChangeLog5
-rw-r--r--Makefile.in2
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 43b961c9f3..e3e493cabe 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2009-02-28 Stefan Monnier <[email protected]>
+
+ * Makefile.in (src): Fix last change so the first `cd' doesn't affect
+ the second.
+
2009-02-28 Eli Zaretskii <[email protected]>
* config.bat: Copy .dbxinit to _dbxinit.
diff --git a/Makefile.in b/Makefile.in
index 14036608d6..749b86538f 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -341,7 +341,7 @@ src: Makefile FRC
cd $@; $(MAKE) all $(MFLAGS) \
CC='${CC}' CFLAGS='${CFLAGS}' CPPFLAGS='${CPPFLAGS}' \
LDFLAGS='${LDFLAGS}' MAKE='${MAKE}' BOOTSTRAPEMACS="$$boot"; \
- fi; \
+ fi;
cd $@; $(MAKE) all $(MFLAGS) \
CC='${CC}' CFLAGS='${CFLAGS}' CPPFLAGS='${CPPFLAGS}' \
LDFLAGS='${LDFLAGS}' MAKE='${MAKE}' BOOTSTRAPEMACS=""