automake-patches
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: automake-1.7.2b depcomp4.test failed


From: Alexandre Duret-Lutz
Subject: Re: automake-1.7.2b depcomp4.test failed
Date: Mon, 17 Feb 2003 15:54:11 +0100
User-agent: Gnus/5.090008 (Oort Gnus v0.08) Emacs/21.2 (i386-pc-linux-gnu)

>>> "Stepan" == Stepan Kasal <address@hidden> writes:

 Stepan> Hello,
 Stepan> I've experienced another test failure.  It wasn't there when
 Stepan> I tried automake-1.7.2b with my original configuration
 Stepan> autoconf 2.57, libtool 1.4.2, automake 1.7.2.

 Stepan> My current config has:
 Stepan> - the same autoconf,
 Stepan> - libtool upgraded to current CVS version, call it 1.4e,
 Stepan> - automake 1.7.2b

Thanks for your thorough report.  I'm installing the following
fix on HEAD and branch-1-7.

2003-02-17  Alexandre Duret-Lutz  <address@hidden>

        * lib/depcomp (makedepend): Don't pass $object to makedepend.
        Reported by Stepan Kasal.

Index: THANKS
===================================================================
RCS file: /cvs/automake/automake/THANKS,v
retrieving revision 1.186.2.20
diff -u -r1.186.2.20 THANKS
--- THANKS      11 Feb 2003 19:33:02 -0000      1.186.2.20
+++ THANKS      17 Feb 2003 14:52:22 -0000
@@ -192,6 +192,7 @@
 Shuhei Amakawa         address@hidden
 Shigio Yamaguchi       address@hidden
 Simon Richter          address@hidden
+Stepan Kasal           address@hidden
 Steve M. Robbins       address@hidden
 Sven Verdoolaege       address@hidden
 Tamara L. Dahlgren     address@hidden
Index: lib/depcomp
===================================================================
RCS file: /cvs/automake/automake/lib/depcomp,v
retrieving revision 1.35.2.4
diff -u -r1.35.2.4 depcomp
--- lib/depcomp 11 Feb 2003 21:06:56 -0000      1.35.2.4
+++ lib/depcomp 17 Feb 2003 14:52:24 -0000
@@ -353,7 +353,9 @@
     case "$arg" in
     -D*|-I*)
       set fnord "$@" "$arg"; shift ;;
-    -*)
+    # Strip any option that makedepend may not understand.  Remove
+    # the object too, otherwise makedepend will parse it as a source file.
+    -*|$object)
       ;;
     *)
       set fnord "$@" "$arg"; shift ;;

-- 
Alexandre Duret-Lutz





reply via email to

[Prev in Thread] Current Thread [Next in Thread]