diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2014-10-22 23:31:48 -0700 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2014-10-22 23:31:48 -0700 |
commit | 285ac870226e2ecc565925013e9ae8e7fe2657c0 (patch) | |
tree | 3a4d869355943a0d913786697562a19ede74e146 /Makefile.in | |
parent | 78b215ffea604d7d062b292ec1d04e31b7b4bd74 (diff) | |
download | emacs-285ac870226e2ecc565925013e9ae8e7fe2657c0.tar.gz |
* Makefile.in (ACLOCAL_INPUTS): Omit unnecessary use of 'wildcard'.
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in index 57d97d7eafc..2f7294073b7 100644 --- a/Makefile.in +++ b/Makefile.in @@ -417,7 +417,7 @@ $(srcdir)/configure: $(AUTOCONF_INPUTS) cd ${srcdir} && ${AUTOCONF} ACLOCAL_PATH = @ACLOCAL_PATH@ -ACLOCAL_INPUTS = $(srcdir)/configure.ac $(wildcard $(srcdir)/m4/*.m4) +ACLOCAL_INPUTS = $(srcdir)/configure.ac $(srcdir)/m4/*.m4 $(srcdir)/aclocal.m4: $(ACLOCAL_INPUTS) cd $(srcdir) && ACLOCAL_PATH='$(ACLOCAL_PATH)' $(ACLOCAL) -I m4 |