automake-patches
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[RFC 02/20] depcomp: remove useless quoting in variable definitions


From: Stefano Lattarini
Subject: [RFC 02/20] depcomp: remove useless quoting in variable definitions
Date: Thu, 18 Oct 2012 22:40:36 +0200

* lib/depcomp (pgcc): Here.

Signed-off-by: Stefano Lattarini <address@hidden>
---
 lib/depcomp | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/lib/depcomp b/lib/depcomp
index db3090e..76ad09f 100755
--- a/lib/depcomp
+++ b/lib/depcomp
@@ -349,13 +349,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
-- 
1.8.0.rc2.11.gd25c58c




reply via email to

[Prev in Thread] Current Thread [Next in Thread]