From 006f2b069abe2dae16d2d5cfab8866ae1697b4c3 Mon Sep 17 00:00:00 2001 From: Brad King Date: Thu, 28 Aug 2008 22:07:19 -0400 Subject: [PATCH] BUG: When recognizing flags on link lines, we must still treat -l as a library. --- Source/cmComputeLinkDepends.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/cmComputeLinkDepends.cxx b/Source/cmComputeLinkDepends.cxx index 8d17ab382..598ac02b1 100644 --- a/Source/cmComputeLinkDepends.cxx +++ b/Source/cmComputeLinkDepends.cxx @@ -312,7 +312,7 @@ int cmComputeLinkDepends::AddLinkEntry(std::string const& item) LinkEntry& entry = this->EntryList[index]; entry.Item = item; entry.Target = this->FindTargetToLink(entry.Item.c_str()); - entry.IsFlag = !entry.Target && item[0] == '-'; + entry.IsFlag = !entry.Target && item[0] == '-' && item[1] == 'l'; // If the item has dependencies queue it to follow them. if(entry.Target)