summaryrefslogtreecommitdiff
path: root/lib/depcomp
diff options
context:
space:
mode:
authorRalf Wildenhues <Ralf.Wildenhues@gmx.de>2006-05-10 20:55:34 +0000
committerRalf Wildenhues <Ralf.Wildenhues@gmx.de>2006-05-10 20:55:34 +0000
commitd2a74d3835b2e85bc192642de3ac652d9483edb0 (patch)
treebc7c6b73ffd83c12abedb589532c3658605f9ce3 /lib/depcomp
parent8952f7248c2637426bcf83d38f07a8b02124a06e (diff)
downloadautomake-d2a74d3835b2e85bc192642de3ac652d9483edb0.tar.gz
* lib/depcomp (ia64hp): Rename dependency style to..
(hp2): ..this, as it works with aCC on HPPA, too; adjust comment. Report by Olivier Fourdan (PR automake/481). * THANKS: Update.
Diffstat (limited to 'lib/depcomp')
-rwxr-xr-xlib/depcomp10
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/depcomp b/lib/depcomp
index cc4f869d3..4e7b1bda7 100755
--- a/lib/depcomp
+++ b/lib/depcomp
@@ -1,7 +1,7 @@
#! /bin/sh
# depcomp - compile a program generating dependencies as side-effects
-scriptversion=2006-01-05.21
+scriptversion=2006-05-10.23
# Copyright (C) 1999, 2000, 2003, 2004, 2005, 2006 Free Software
# Foundation, Inc.
@@ -277,10 +277,10 @@ icc)
rm -f "$tmpdepfile"
;;
-ia64hp)
- # The "hp" stanza above does not work with HP's ia64 compilers,
- # which have integrated preprocessors. The correct option to use
- # with these is +Maked; it writes dependencies to a file named
+hp2)
+ # The "hp" stanza above does not work with aCC (C++) and HP's ia64
+ # compilers, which have integrated preprocessors. The correct option
+ # to use with these is +Maked; it writes dependencies to a file named
# 'foo.d', which lands next to the object file, wherever that
# happens to be.
# Much of this is similar to the tru64 case; see comments there.