]> git.ipfire.org Git - thirdparty/automake.git/commitdiff
depcomp: remove useless quoting in variable definitions
authorStefano Lattarini <stefano.lattarini@gmail.com>
Thu, 18 Oct 2012 11:22:56 +0000 (13:22 +0200)
committerStefano Lattarini <stefano.lattarini@gmail.com>
Sat, 24 Nov 2012 14:52:40 +0000 (15:52 +0100)
* lib/depcomp (pgcc): Here.

Signed-off-by: Stefano Lattarini <stefano.lattarini@gmail.com>
lib/depcomp

index dfc97debb18696aba9c7ba47b90ca39dedad2d2d..2ccf719359c93d6d5aa0b3f3d472dfa5ae3f7f68 100755 (executable)
@@ -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