From 06f7d1d6914fe55bf1d3eedab04a9aa13f260dfc Mon Sep 17 00:00:00 2001 From: Matthias Koeppe Date: Thu, 31 Aug 2017 22:35:25 -0700 Subject: [PATCH] Fix build/make/install change --- Makefile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 9e1486b4407..253d1eb916c 100644 --- a/Makefile +++ b/Makefile @@ -17,8 +17,9 @@ build: all-build %:: @if [ -x relocate-once.py ]; then ./relocate-once.py; fi $(MAKE) build/make/Makefile - +$(top_srcdir)/build/bin/sage-logger \ - "cd build/make && $(top_srcdir)/build/make/install '$@'" logs/install.log + +abs_top_srcdir=`cd $(top_srcdir) && pwd -P`; \ + $(top_srcdir)/build/bin/sage-logger \ + "cd build/make && $${abs_top_srcdir}/build/make/install '$@'" logs/install.log # If configure was run before, rerun it with the old arguments. # Otherwise, run configure with argument $PREREQ_OPTIONS.