aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJim Blandy1992-11-16 00:32:56 +0000
committerJim Blandy1992-11-16 00:32:56 +0000
commit82d3f7435fe0960336eb52a66ebab775d411bfe0 (patch)
tree2be10ed720d310014aa8a5347568cc7f4724c9f2
parentedaf4ff544f005acf914a153284f7fdc7de85070 (diff)
downloademacs-82d3f7435fe0960336eb52a66ebab775d411bfe0.tar.gz
emacs-82d3f7435fe0960336eb52a66ebab775d411bfe0.zip
* Makefile.in (doxemacs, dotemacs): Explicitly pass along the CC
variable in these rules, just as in the `doall' rule.
-rw-r--r--src/Makefile.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Makefile.in b/src/Makefile.in
index 1ef3f18009b..a95e01e6a59 100644
--- a/src/Makefile.in
+++ b/src/Makefile.in
@@ -28,12 +28,12 @@ clean:
28xemacs: doxemacs 28xemacs: doxemacs
29 29
30doxemacs: xmakefile 30doxemacs: xmakefile
31 $(MAKE) -f xmakefile ${MFLAGS} xemacs 31 $(MAKE) CC='${CC}' -f xmakefile ${MFLAGS} xemacs
32 32
33temacs: dotemacs 33temacs: dotemacs
34 34
35dotemacs: xmakefile 35dotemacs: xmakefile
36 $(MAKE) -f xmakefile ${MFLAGS} temacs 36 $(MAKE) CC='${CC}' -f xmakefile ${MFLAGS} temacs
37 37
38# If you have a problem with cc -E here, changing 38# If you have a problem with cc -E here, changing
39# the definition of CPP above may fix it. 39# the definition of CPP above may fix it.