From 5a54fa6e45ee10cf58ee1b6d2eb5522a24bb8745 Mon Sep 17 00:00:00 2001 From: marha Date: Thu, 12 Sep 2013 11:38:41 +0200 Subject: Some minor modifications Ignore pipe symbols when in dependency list Solved some linking problems in linux Solved problem calling svn info when using svn version from cygwin --- tools/mhmake/src/mhmakefileparser.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tools/mhmake/src/mhmakefileparser.cpp') diff --git a/tools/mhmake/src/mhmakefileparser.cpp b/tools/mhmake/src/mhmakefileparser.cpp index 4a50d6edd..0731d1ce9 100644 --- a/tools/mhmake/src/mhmakefileparser.cpp +++ b/tools/mhmake/src/mhmakefileparser.cpp @@ -379,7 +379,7 @@ void mhmakefileparser::SplitToItems(const string &String,vector &Item { string Item; pTmp=NextItem(pTmp,Item); - if (!Item.empty()) + if (!Item.empty() && Item!="|") { Items.push_back(GetFileInfo(Item,m_MakeDir)); } -- cgit v1.2.3