From: Stefan Monnier Date: Sat, 28 Feb 2009 23:07:42 +0000 (+0000) Subject: (src): Fix last change so the first `cd' doesn't affect the second. X-Git-Tag: emacs-pretest-23.0.92~402 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=2ae83832138a30948bc165acf995ec6986572221;p=emacs.git (src): Fix last change so the first `cd' doesn't affect the second. --- diff --git a/ChangeLog b/ChangeLog index 43b961c9f3e..e3e493cabe3 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2009-02-28 Stefan Monnier + + * Makefile.in (src): Fix last change so the first `cd' doesn't affect + the second. + 2009-02-28 Eli Zaretskii * config.bat: Copy .dbxinit to _dbxinit. diff --git a/Makefile.in b/Makefile.in index 14036608d67..749b86538f8 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=""