From: Mike Frysinger Date: Wed, 2 Sep 2015 04:49:24 +0000 (-0400) Subject: autotools.eclass: autotools_run_tool: allow full paths to tools #549268 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=ecd9954;p=gentoo.git 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. --- diff --git a/eclass/autotools.eclass b/eclass/autotools.eclass index 22f2f39a3c82..7c82efcb16f5 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