[ros-diffs] [hpoussin] 31016: Don't add implicit dependencies for ntdll

hpoussin at svn.reactos.org hpoussin at svn.reactos.org
Wed Dec 5 17:17:53 CET 2007


Author: hpoussin
Date: Wed Dec  5 19:17:51 2007
New Revision: 31016

URL: http://svn.reactos.org/svn/reactos?rev=31016&view=rev
Log:
Don't add implicit dependencies for ntdll

Modified:
    trunk/reactos/tools/rbuild/backend/mingw/modulehandler.cpp

Modified: trunk/reactos/tools/rbuild/backend/mingw/modulehandler.cpp
URL: http://svn.reactos.org/svn/reactos/trunk/reactos/tools/rbuild/backend/mingw/modulehandler.cpp?rev=31016&r1=31015&r2=31016&view=diff
==============================================================================
--- trunk/reactos/tools/rbuild/backend/mingw/modulehandler.cpp (original)
+++ trunk/reactos/tools/rbuild/backend/mingw/modulehandler.cpp Wed Dec  5 19:17:51 2007
@@ -2902,6 +2902,12 @@
 		return;
 	}
 
+	if ( module.name == "ntdll" )
+	{
+		// no implicit libraries
+		return;
+	}
+
 	if ( !module.isDefaultEntryPoint )
 	{
 		if ( module.GetEntryPoint(false) == "0" )




More information about the Ros-diffs mailing list