From: Tom Tromey Date: Tue, 26 Mar 2002 06:04:19 +0000 (+0000) Subject: 2002-03-25 Angus Leeming X-Git-Tag: branchpoint-1-6~20 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=dff4fcb8081f3306d5642902719a25be9840cbc8;p=thirdparty%2Fautomake.git 2002-03-25 Angus Leeming * lib/depcomp (tru64): Correctly compute `base'. --- diff --git a/ChangeLog b/ChangeLog index 9f4386208..a6e8fc342 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2002-03-25 Angus Leeming + + * lib/depcomp (tru64): Correctly compute `base'. + 2002-03-21 Alexandre Duret-Lutz * tests/pr211.test: s/requires/required/, otherwise the test fails diff --git a/THANKS b/THANKS index 34536a793..1a93f3f44 100644 --- a/THANKS +++ b/THANKS @@ -14,6 +14,7 @@ Alexey Mahotkin alexm@hsys.msk.ru Andreas Schwab schwab@lamothe.informatik.uni-dortmund.de Andrew Cagney cagney@tpgi.com.au Andris Pavenis pavenis@lanet.lv +Angus Leeming a.leeming@ic.ac.uk Anthony Green green@cygnus.com Arkadiusz Miskiewicz misiek@pld.ORG.PL Assar Westerlund assar@sics.se diff --git a/lib/depcomp b/lib/depcomp index 368e3be93..3480ce4e9 100755 --- a/lib/depcomp +++ b/lib/depcomp @@ -207,13 +207,13 @@ aix) ;; tru64) - # The Tru64 AIX compiler uses -MD to generate dependencies as a side + # The Tru64 compiler uses -MD to generate dependencies as a side # effect. `cc -MD -o foo.o ...' puts the dependencies into `foo.o.d'. # At least on Alpha/Redhat 6.1, Compaq CCC V6.2-504 seems to put # dependencies in `foo.d' instead, so we check for that too. # Subdirectories are respected. - base=`echo "$object" | sed -e 's/\.o$/.d/' -e 's/\.lo$/.d/'` + base=`echo "$object" | sed -e 's/\.o$//' -e 's/\.lo$//'` tmpdepfile1="$base.o.d" tmpdepfile2="$base.d" if test "$libtool" = yes; then