summaryrefslogtreecommitdiff
path: root/src/=Makefile.in
diff options
context:
space:
mode:
authorJim Blandy <jimb@redhat.com>1992-11-16 00:32:56 +0000
committerJim Blandy <jimb@redhat.com>1992-11-16 00:32:56 +0000
commitf81bfe5ccc84d4ada7a54ae9917bae5ce2290a5b (patch)
tree7c3194b7e9da6e97776103addeb2a076c97e0b5e /src/=Makefile.in
parent5d3e14fb7731f7ad4c40a8b8a56d52d8f51961e7 (diff)
downloademacs-f81bfe5ccc84d4ada7a54ae9917bae5ce2290a5b.tar.gz
* Makefile.in (doxemacs, dotemacs): Explicitly pass along the CC
variable in these rules, just as in the `doall' rule.
Diffstat (limited to 'src/=Makefile.in')
-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:
xemacs: doxemacs
doxemacs: xmakefile
- $(MAKE) -f xmakefile ${MFLAGS} xemacs
+ $(MAKE) CC='${CC}' -f xmakefile ${MFLAGS} xemacs
temacs: dotemacs
dotemacs: xmakefile
- $(MAKE) -f xmakefile ${MFLAGS} temacs
+ $(MAKE) CC='${CC}' -f xmakefile ${MFLAGS} temacs
# If you have a problem with cc -E here, changing
# the definition of CPP above may fix it.