From 8469853ac0e693b28a48e30310ff1417bcf61d6a Mon Sep 17 00:00:00 2001 From: Stefano Lattarini Date: Thu, 18 Oct 2012 13:22:56 +0200 Subject: [PATCH] depcomp: remove useless quoting in variable definitions * lib/depcomp (pgcc): Here. Signed-off-by: Stefano Lattarini --- lib/depcomp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 -- 2.11.4.GIT