diff options
author | Stefano Lattarini <stefano.lattarini@gmail.com> | 2012-07-07 11:54:28 +0200 |
---|---|---|
committer | Stefano Lattarini <stefano.lattarini@gmail.com> | 2012-07-07 11:54:28 +0200 |
commit | cbd1a6049adbbc21081104a1cb7c2b793652106a (patch) | |
tree | 106ea8740ae5df563e9f3751ae6d60768b6a4ba2 /lib/am/lisp.am | |
parent | b3a5c6b4973209af0aa125f8916fff4070080ee9 (diff) | |
parent | 5197aba1d5e1895c28d66703b0b407c991f608fb (diff) | |
download | automake-cbd1a6049adbbc21081104a1cb7c2b793652106a.tar.gz |
Merge branch 'maint'
* maint:
cosmetics: rename t/ax/test-runner => t/ax/runtest
fixup: another "make recheck" failure with BSD make
test runner: work correctly in VPATH setups
compat: automake should define $(mkdir_p), for backward compatibility
coverage: test that AM_PROG_MKDIR_P and $(mkdir_p) still works
tests init: don't automatically re-execute tests with a POSIX shell
yacc tests: fix spurious failure with parallel make
tests: ignore minor 'recheck' regression for BSD make
tests: don't clutter the top-level dir with temporary test directories
tests: avoid spurious failures when @MKDIR_P@ points to "install-sh -d"
lisp: better support of VPATH builds
news: fixlets and updates
+ Extra non-trivial edits:
* NEWS: State that $(mkdir_p) is still provided as an alias to
$(MKDIR_P), for (partial) backward-compatibility.
Signed-off-by: Stefano Lattarini <stefano.lattarini@gmail.com>
Diffstat (limited to 'lib/am/lisp.am')
-rw-r--r-- | lib/am/lisp.am | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/am/lisp.am b/lib/am/lisp.am index e32bc506b..4a96eb0d5 100644 --- a/lib/am/lisp.am +++ b/lib/am/lisp.am @@ -36,7 +36,8 @@ elc-stamp: $(LISP) done; \ ## Finally call elisp-comp for all files. shift; \ - EMACS="$(EMACS)" $(SHELL) $(elisp_comp) "$$@" || exit 1; \ + abs_srcdir="$(abs_srcdir)" EMACS="$(EMACS)" $(SHELL) \ + $(elisp_comp) "$$@" || exit 1; \ else : ; fi @mv -f elc-temp $@ |