]> git.ipfire.org Git - thirdparty/automake.git/commitdiff
2002-03-25 Angus Leeming <a.leeming@ic.ac.uk>
authorTom Tromey <tromey@redhat.com>
Tue, 26 Mar 2002 06:04:19 +0000 (06:04 +0000)
committerTom Tromey <tromey@redhat.com>
Tue, 26 Mar 2002 06:04:19 +0000 (06:04 +0000)
* lib/depcomp (tru64): Correctly compute `base'.

ChangeLog
THANKS
lib/depcomp

index 9f4386208aff12d96a34b0a08aac6c0a73d28c24..a6e8fc342bafb93219ad33f8aa81a8b5b4a3c5e1 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2002-03-25  Angus Leeming  <a.leeming@ic.ac.uk>
+
+       * lib/depcomp (tru64): Correctly compute `base'.
+
 2002-03-21  Alexandre Duret-Lutz  <duret_g@epita.fr>
 
        * tests/pr211.test: s/requires/required/, otherwise the test fails
diff --git a/THANKS b/THANKS
index 34536a7930a8d977f75a49ced460889361fe63bf..1a93f3f44f9d5d228046f1e2970ac3f237658ead 100644 (file)
--- 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
index 368e3be93e0b80b87f428763574b9d099bd38bfd..3480ce4e96d431f9d70162fd1cd79366c714996b 100755 (executable)
@@ -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