aboutsummaryrefslogtreecommitdiffstats
path: root/doc/misc
diff options
context:
space:
mode:
authorGlenn Morris2012-05-11 22:05:05 -0400
committerGlenn Morris2012-05-11 22:05:05 -0400
commit9583393ff6922f3abe0e59942c3864e8d68e68a3 (patch)
treeaabba0ff9d7b94f985ac4881c5f66a453a019488 /doc/misc
parentc7f95930c7051e70f0eff132dd94d9db8f98861e (diff)
downloademacs-9583393ff6922f3abe0e59942c3864e8d68e68a3.tar.gz
emacs-9583393ff6922f3abe0e59942c3864e8d68e68a3.zip
* doc/misc/Makefile.in (.SUFFIXES): Disable implicit rules.
Fixes previous change.
Diffstat (limited to 'doc/misc')
-rw-r--r--doc/misc/ChangeLog1
-rw-r--r--doc/misc/Makefile.in2
2 files changed, 3 insertions, 0 deletions
diff --git a/doc/misc/ChangeLog b/doc/misc/ChangeLog
index 6a74bce197d..312b2d1d42e 100644
--- a/doc/misc/ChangeLog
+++ b/doc/misc/ChangeLog
@@ -1,6 +1,7 @@
12012-05-12 Glenn Morris <rgm@gnu.org> 12012-05-12 Glenn Morris <rgm@gnu.org>
2 2
3 * Makefile.in (info.info): Rename from info, to avoid duplication. 3 * Makefile.in (info.info): Rename from info, to avoid duplication.
4 (.SUFFIXES): Disable implicit rules.
4 5
5 * Makefile.in (MKDIR_P): New, set by configure. 6 * Makefile.in (MKDIR_P): New, set by configure.
6 (mkinfodir): Use $MKDIR_P. 7 (mkinfodir): Use $MKDIR_P.
diff --git a/doc/misc/Makefile.in b/doc/misc/Makefile.in
index 02115a4b474..fd62afe5adc 100644
--- a/doc/misc/Makefile.in
+++ b/doc/misc/Makefile.in
@@ -216,6 +216,8 @@ ENVADD = TEXINPUTS="$(srcdir):$(emacsdir):$(TEXINPUTS)" \
216mkinfodir = @${MKDIR_P} ${srcdir}/${infodir} 216mkinfodir = @${MKDIR_P} ${srcdir}/${infodir}
217 217
218.PHONY: info dvi pdf echo-info 218.PHONY: info dvi pdf echo-info
219## Prevent implicit rule triggering for foo.info.
220.SUFFIXES:
219 221
220# Default. 222# Default.
221info: $(INFO_TARGETS) 223info: $(INFO_TARGETS)