aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2012-04-08 23:40:20 -0700
committerGlenn Morris2012-04-08 23:40:20 -0700
commitfd9d85c2d2a2bb0f159f5d13c3c7b5c900164654 (patch)
tree9010649a1df57dd8f4051af6c6f41b08ddee32b5
parent414559565dd2f9eb568ac7b64e1d298df3b73076 (diff)
downloademacs-fd9d85c2d2a2bb0f159f5d13c3c7b5c900164654.tar.gz
emacs-fd9d85c2d2a2bb0f159f5d13c3c7b5c900164654.zip
Small changes for top-level Makefile
* Makefile.in (leim): Check cd return value. Pass fewer variables. (install-leim): Check cd return value. Pass $MFLAGS. (install-strip): Pass $MFLAGS.
-rw-r--r--ChangeLog4
-rw-r--r--Makefile.in10
2 files changed, 8 insertions, 6 deletions
diff --git a/ChangeLog b/ChangeLog
index aa462a4d906..2fe50a6d83b 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,9 @@
12012-04-09 Glenn Morris <rgm@gnu.org> 12012-04-09 Glenn Morris <rgm@gnu.org>
2 2
3 * Makefile.in (leim): Check cd return value. Pass fewer variables.
4 (install-leim): Check cd return value. Pass $MFLAGS.
5 (install-strip): Pass $MFLAGS.
6
3 * configure.in: Require makeinfo >= 4.7. (Bug#10910) 7 * configure.in: Require makeinfo >= 4.7. (Bug#10910)
4 Eg org.texi has been using 4.7 functions for some time. 8 Eg org.texi has been using 4.7 functions for some time.
5 9
diff --git a/Makefile.in b/Makefile.in
index af0c902b381..3ee5e8ae8ed 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -2,7 +2,7 @@
2# DIST: make most of the changes to this file you might want, so try 2# DIST: make most of the changes to this file you might want, so try
3# DIST: that first. 3# DIST: that first.
4 4
5# Copyright (C) 1992-2012 Free Software Foundation, Inc. 5# Copyright (C) 1992-2012 Free Software Foundation, Inc.
6 6
7# This file is part of GNU Emacs. 7# This file is part of GNU Emacs.
8 8
@@ -309,9 +309,7 @@ epaths-force: FRC
309# running more than 1 process in the leim directory, especially for 309# running more than 1 process in the leim directory, especially for
310# the $TIT files there. 310# the $TIT files there.
311leim: src Makefile FRC 311leim: src Makefile FRC
312 (export PARALLEL; PARALLEL=0; cd $@; $(MAKE) all $(MFLAGS) \ 312 cd leim && PARALLEL=0 $(MAKE) all $(MFLAGS)
313 CC='${CC}' CFLAGS='${CFLAGS}' CPPFLAGS='${CPPFLAGS}' \
314 LDFLAGS='${LDFLAGS}' MAKE='${MAKE}')
315 313
316lib-src src: lib 314lib-src src: lib
317 315
@@ -670,11 +668,11 @@ install-etc: mkdir
670### `install-arch-indep'. People who extracted LEIM files after they 668### `install-arch-indep'. People who extracted LEIM files after they
671### installed Emacs itself can install only LEIM files by this target. 669### installed Emacs itself can install only LEIM files by this target.
672install-leim: leim/Makefile mkdir 670install-leim: leim/Makefile mkdir
673 cd leim; $(MAKE) install 671 cd leim && $(MAKE) $(MFLAGS) install
674 672
675### Build Emacs and install it, stripping binaries while installing them. 673### Build Emacs and install it, stripping binaries while installing them.
676install-strip: 674install-strip:
677 $(MAKE) INSTALL_STRIP=-s install 675 $(MAKE) $(MFLAGS) INSTALL_STRIP=-s install
678 676
679### Build all the directories we're going to install Emacs in. Since 677### Build all the directories we're going to install Emacs in. Since
680### we may be creating several layers of directories (for example, 678### we may be creating several layers of directories (for example,