summaryrefslogtreecommitdiff
path: root/lib/depcomp
diff options
context:
space:
mode:
authorStefano Lattarini <stefano.lattarini@gmail.com>2012-10-18 13:22:56 +0200
committerStefano Lattarini <stefano.lattarini@gmail.com>2012-11-24 15:52:40 +0100
commit8469853ac0e693b28a48e30310ff1417bcf61d6a (patch)
treeb731eddf3862850843f062be5f1f4ce4ec409964 /lib/depcomp
parent883723873c94bdd3a9a3c9a376e3b2b266db5ca3 (diff)
downloadautomake-8469853ac0e693b28a48e30310ff1417bcf61d6a.tar.gz
depcomp: remove useless quoting in variable definitions
* lib/depcomp (pgcc): Here. Signed-off-by: Stefano Lattarini <stefano.lattarini@gmail.com>
Diffstat (limited to 'lib/depcomp')
-rwxr-xr-xlib/depcomp4
1 files 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