commit: ecd9954d249956d09be0f4803b1b8766ae203adc
Author: Mike Frysinger <vapier <AT> gentoo <DOT> org>
AuthorDate: Wed Sep 2 04:49:24 2015 +0000
Commit: Mike Frysinger <vapier <AT> gentoo <DOT> org>
CommitDate: Wed Sep 2 04:50:15 2015 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ecd9954d
autotools.eclass: autotools_run_tool: allow full paths to tools #549268
In some cases we want to pass the full path to the autotool program.
Since the wrapper doesn't really care about this part, normalize the
program name to its basename when creating the stderr file.
eclass/autotools.eclass | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/eclass/autotools.eclass b/eclass/autotools.eclass
index 22f2f39..7c82efc 100644
--- a/eclass/autotools.eclass
+++ b/eclass/autotools.eclass
@@ -475,13 +475,14 @@ autotools_run_tool() {
autotools_env_setup
- local STDERR_TARGET="${T}/$1.out"
+ # Allow people to pass in full paths. #549268
+ local STDERR_TARGET="${T}/${1##*/}.out"
# most of the time, there will only be one run, but if there are
# more, make sure we get unique log filenames
if [[ -e ${STDERR_TARGET} ]] ; then
local i=1
while :; do
- STDERR_TARGET="${T}/$1-${i}.out"
+ STDERR_TARGET="${T}/${1##*/}-${i}.out"
[[ -e ${STDERR_TARGET} ]] || break
: $(( i++ ))
done