From: Tom Tromey Date: Wed, 9 Jan 2002 21:17:42 +0000 (+0000) Subject: 2002-01-09 Ryan T. Sammartino X-Git-Tag: Release-1-5d~43 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d4ccb135c2297ac77f4afc43303ba525ebfbe99d;p=thirdparty%2Fautomake.git 2002-01-09 Ryan T. Sammartino * lib/depcomp (msvisualcpp): Strip -Gm, -Gi, and -ZI options. --- diff --git a/ChangeLog b/ChangeLog index 57054381b..671b5fc0f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2002-01-09 Ryan T. Sammartino + + * lib/depcomp (msvisualcpp): Strip -Gm, -Gi, and -ZI options. + 2002-01-09 Alexandre Duret-Lutz * automake.in (file_contents_internal): Introduce two variables, diff --git a/THANKS b/THANKS index fc409165d..32f30f33f 100644 --- a/THANKS +++ b/THANKS @@ -149,6 +149,7 @@ Robert Bihlmeyer robbe@orcus.priv.at Robert Boehne rboehne@ricardo-us.com Robert Collins robert.collins@itdomain.com.au Rusty Ballinger rusty@rlyeh.engr.sgi.com +Ryan T. Sammartino ryants@shaw.ca Sergey Vlasov vsu@mivlgu.murom.ru Seth Alves alves@hungry.com Shuhei Amakawa diff --git a/lib/depcomp b/lib/depcomp index 4c8d44bd1..9ab71e2f2 100755 --- a/lib/depcomp +++ b/lib/depcomp @@ -383,6 +383,21 @@ msvisualcpp) done ;; esac + for arg + do + case "$arg" in + "-Gm"|"/Gm"|"-Gi"|"/Gi"|"-ZI"|"/ZI") + set fnord "$@" + shift + shift + ;; + *) + set fnord "$@" "$arg" + shift + shift + ;; + esac + done "$@" -E | sed -n '/^#line [0-9][0-9]* "\([^"]*\)"/ s::echo "`cygpath -u \\"\1\\"`":p' | sort | uniq > "$tmpdepfile" ) &