diff options
author | Krzysztof Krzyżaniak <eloy@debian.org> | 2007-04-06 09:29:14 +0000 |
---|---|---|
committer | Krzysztof Krzyżaniak <eloy@debian.org> | 2007-04-06 09:29:14 +0000 |
commit | 389a1e59d6003217bbb158f027bb31a6474cedf4 (patch) | |
tree | 22495f5431972bb0691810664a5a2355d4027222 /depcomp | |
parent | d93002bf5d3694354c2fb4f5bf3dba45d4bd8e64 (diff) | |
download | lighttpd-389a1e59d6003217bbb158f027bb31a6474cedf4.tar.gz |
new upstream version
Diffstat (limited to 'depcomp')
-rwxr-xr-x | depcomp | 9 |
1 files changed, 5 insertions, 4 deletions
@@ -1,7 +1,7 @@ #! /bin/sh # depcomp - compile a program generating dependencies as side-effects -scriptversion=2005-02-09.22 +scriptversion=2005-07-09.11 # Copyright (C) 1999, 2000, 2003, 2004, 2005 Free Software Foundation, Inc. @@ -17,8 +17,8 @@ scriptversion=2005-02-09.22 # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software -# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA -# 02111-1307, USA. +# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA +# 02110-1301, USA. # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a @@ -467,7 +467,8 @@ cpp) done "$@" -E | - sed -n '/^# [0-9][0-9]* "\([^"]*\)".*/ s:: \1 \\:p' | + sed -n -e '/^# [0-9][0-9]* "\([^"]*\)".*/ s:: \1 \\:p' \ + -e '/^#line [0-9][0-9]* "\([^"]*\)".*/ s:: \1 \\:p' | sed '$ s: \\$::' > "$tmpdepfile" rm -f "$depfile" echo "$object : \\" > "$depfile" |