From 3e9a76f04d982c35a250c5f332cfd4d4f3e80ea2 Mon Sep 17 00:00:00 2001 From: Angus Gratton Date: Wed, 31 Aug 2016 11:04:24 +1000 Subject: [PATCH] eclipse_make.sh: Fix printing of make directory --- tools/windows/eclipse_make.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/windows/eclipse_make.sh b/tools/windows/eclipse_make.sh index 115ecac2fa..200d798ffa 100755 --- a/tools/windows/eclipse_make.sh +++ b/tools/windows/eclipse_make.sh @@ -5,5 +5,5 @@ # process uses MinGW paths of the form /c/dir/dir/file. So parse these out... # # (regexp deliberate only matches after a space character to try and avoid false-positives.) -echo "Running make in $(dirname $0)" +echo "Running make in $(pwd)" make $@ V=1 | sed -E "s@ /([a-z])/(.+)/@ \1:/\2/@g" | sed -E "s@-I/([a-z])/(.+)/@-I\1:/\2/@g" | sed -E "s@-L/([a-z])/(.+)/@-L\1:/\2/@g"