summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorStefano Lattarini <stefano.lattarini@gmail.com>2011-05-04 18:55:00 +0200
committerStefano Lattarini <stefano.lattarini@gmail.com>2011-05-04 18:55:00 +0200
commit978b6989d59e31c516421f82fbca64b99d48f741 (patch)
tree45ebe86dc26daf8c7bd3136a79c18fee541a3962 /lib
parentd986a8006ff7ce7fbe6f50b3242167cefa94448b (diff)
parent1ada3973ce2ece03695b068477e08253f8d18b5f (diff)
downloadautomake-978b6989d59e31c516421f82fbca64b99d48f741.tar.gz
Merge branch 'maint' into yacc-work
With some edits to `tests/defs.in', and a new ChangeLog entry to reflect this.
Diffstat (limited to 'lib')
-rwxr-xr-xlib/depcomp4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/depcomp b/lib/depcomp
index 82ebc751f..2fe40a94b 100755
--- a/lib/depcomp
+++ b/lib/depcomp
@@ -1,7 +1,7 @@
#! /bin/sh
# depcomp - compile a program generating dependencies as side-effects
-scriptversion=2011-04-11-10; # UTC
+scriptversion=2011-04-16.09; # UTC
# Copyright (C) 1999, 2000, 2003, 2004, 2005, 2006, 2007, 2009, 2011,
# Free Software Foundation, Inc.
@@ -162,7 +162,7 @@ gcc)
## to the object. Take care to not repeat it in the output.
## Some versions of the HPUX 10.20 sed can't process this invocation
## correctly. Breaking it into two sed invocations is a workaround.
- sed -e 's/^\\$//' -e '/^$/d' -e "s|.*$object$||" '/:$/d' \
+ sed -e 's/^\\$//' -e '/^$/d' -e "s|.*$object$||" -e '/:$/d' \
| sed -e 's/$/ :/' >> "$depfile"
rm -f "$tmpdepfile"
;;