]> git.sur5r.net Git - cc65/commitdiff
Don't add the current directory to the list of search paths. If the main file
authoruz <uz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Wed, 1 Aug 2012 21:42:26 +0000 (21:42 +0000)
committeruz <uz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Wed, 1 Aug 2012 21:42:26 +0000 (21:42 +0000)
is located there, it is added anyway. If the main file is located elsewhere,
we don't want to search in the current directory.

git-svn-id: svn://svn.cc65.org/cc65/trunk@5802 b7a2c559-68d2-44c3-8de9-860c34a00d81

src/ca65/incpath.c

index 59749d8d234ad59dee2699e78c748f077fb304a2..b69bf23987e2062cd7553e3543ad4b2b938ae6d1 100644 (file)
@@ -71,10 +71,6 @@ void InitIncludePaths (void)
     IncSearchPath = NewSearchPath ();
     BinSearchPath = NewSearchPath ();
 
-    /* Add the current directory to the search paths */
-    AddSearchPath (IncSearchPath, "");
-    AddSearchPath (BinSearchPath, "");
-
     /* Add some compiled in search paths if defined at compile time */
 #ifdef CA65_INC
     AddSearchPath (IncSearchPath, CA65_INC);