summaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2004-06-01 15:27:10 +0000
committerJim Meyering <jim@meyering.net>2004-06-01 15:27:10 +0000
commit33f99919fd6e5bf8bb951d57baa5914ce15e3578 (patch)
tree5a4f84cd685a5fc52a250b79ff86accfe8e990b7 /config
parentc74dc457eb1e9f0a839e60f1a7a7f7fcc2129bcd (diff)
downloadcoreutils-33f99919fd6e5bf8bb951d57baa5914ce15e3578.tar.xz
update from gnulib
Diffstat (limited to 'config')
-rw-r--r--config/depcomp9
1 files changed, 6 insertions, 3 deletions
diff --git a/config/depcomp b/config/depcomp
index b966ddd8c..11e2d3bfe 100644
--- a/config/depcomp
+++ b/config/depcomp
@@ -1,7 +1,7 @@
#! /bin/sh
# depcomp - compile a program generating dependencies as side-effects
-scriptversion=2004-04-25.14
+scriptversion=2004-05-31.23
# Copyright (C) 1999, 2000, 2003, 2004 Free Software Foundation, Inc.
@@ -288,9 +288,12 @@ tru64)
if test "$libtool" = yes; then
# Dependencies are output in .lo.d with libtool 1.4.
- # They are output in .o.d with libtool 1.5.
+ # With libtool 1.5 they are output both in $dir.libs/$base.o.d
+ # and in $dir.libs/$base.o.d and $dir$base.o.d. We process the
+ # latter, because the former will be cleaned when $dir.libs is
+ # erased.
tmpdepfile1="$dir.libs/$base.lo.d"
- tmpdepfile2="$dir.libs/$base.o.d"
+ tmpdepfile2="$dir$base.o.d"
tmpdepfile3="$dir.libs/$base.d"
"$@" -Wc,-MD
else