Repository: trafficserver Updated Branches: refs/heads/master 428c01471 -> 03a2950ac
TS-2711 Fix warning from make, by using appropriate env variable Project: http://git-wip-us.apache.org/repos/asf/trafficserver/repo Commit: http://git-wip-us.apache.org/repos/asf/trafficserver/commit/03a2950a Tree: http://git-wip-us.apache.org/repos/asf/trafficserver/tree/03a2950a Diff: http://git-wip-us.apache.org/repos/asf/trafficserver/diff/03a2950a Branch: refs/heads/master Commit: 03a2950ac4f95f52e345d23e9dc80954a5a8417f Parents: 428c014 Author: Leif Hedstrom <[email protected]> Authored: Wed Apr 30 15:22:01 2014 -0600 Committer: Leif Hedstrom <[email protected]> Committed: Wed Apr 30 15:22:01 2014 -0600 ---------------------------------------------------------------------- lib/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/trafficserver/blob/03a2950a/lib/Makefile.am ---------------------------------------------------------------------- diff --git a/lib/Makefile.am b/lib/Makefile.am index 5e495ab..48bb037 100644 --- a/lib/Makefile.am +++ b/lib/Makefile.am @@ -42,7 +42,7 @@ all-local: @echo "Making all in luajit" test -d "$(top_srcdir)/$(subdir)/luajit/src" || (cd "$(top_srcdir)" && git submodule update --init) test -d "$(top_builddir)/$(subdir)/luajit/src" || cp -rf "$(srcdir)/luajit" "$(top_builddir)/$(subdir)/" - cd luajit && make PREFIX=$(prefix) + cd luajit && $(MAKE) PREFIX=$(prefix) clean-local: test "$(top_srcdir)" != "$(top_builddir)" || (cd "$(top_builddir)/$(subdir)/luajit" && make clean)
