From: Stefano Lattarini Date: Thu, 18 Oct 2012 11:22:56 +0000 (+0200) Subject: depcomp: remove useless quoting in variable definitions X-Git-Tag: v1.12b~13^2~18 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8469853ac0e693b28a48e30310ff1417bcf61d6a;p=thirdparty%2Fautomake.git depcomp: remove useless quoting in variable definitions * lib/depcomp (pgcc): Here. Signed-off-by: Stefano Lattarini --- diff --git a/lib/depcomp b/lib/depcomp index dfc97debb..2ccf71935 100755 --- a/lib/depcomp +++ b/lib/depcomp @@ -356,13 +356,13 @@ pgcc) # Use the source, not the object, to determine the base name, since # that's sadly what pgcc will do too. base=`echo "$source" | sed -e 's|^.*/||' -e 's/\.[-_a-zA-Z0-9]*$//'` - tmpdepfile="$base.d" + tmpdepfile=$base.d # For projects that build the same source file twice into different object # files, the pgcc approach of using the *source* file root name can cause # problems in parallel builds. Use a locking strategy to avoid stomping on # the same $tmpdepfile. - lockdir="$base.d-lock" + lockdir=$base.d-lock trap "echo '$0: caught signal, cleaning up...' >&2; rm -rf $lockdir" 1 2 13 15 numtries=100 i=$numtries