[svn:parrot] r40442 - trunk/src

allison at svn.parrot.org allison at svn.parrot.org
Fri Aug 7 17:29:15 UTC 2009


Author: allison
Date: Fri Aug  7 17:29:14 2009
New Revision: 40442
URL: https://trac.parrot.org/parrot/changeset/40442

Log:
[cage] Remove 'runtime/parrot' from library and include path searches,
search under 'runtime/parrot/library' and 'runtime/parrot/include'
instead. Resolves TT #511.

Modified:
   trunk/src/library.c

Modified: trunk/src/library.c
==============================================================================
--- trunk/src/library.c	Fri Aug  7 17:16:32 2009	(r40441)
+++ trunk/src/library.c	Fri Aug  7 17:29:14 2009	(r40442)
@@ -180,8 +180,6 @@
             PARROT_LIB_PATH_INCLUDE, paths);
     entry = CONST_STRING(interp, "runtime/parrot/include/");
     VTABLE_push_string(interp, paths, entry);
-    entry = CONST_STRING(interp, "runtime/parrot/");
-    VTABLE_push_string(interp, paths, entry);
     entry = CONST_STRING(interp, "./");
     VTABLE_push_string(interp, paths, entry);
     if (VTABLE_elements(interp, config_hash)) {
@@ -201,8 +199,6 @@
             PARROT_LIB_PATH_LIBRARY, paths);
     entry = CONST_STRING(interp, "runtime/parrot/library/");
     VTABLE_push_string(interp, paths, entry);
-    entry = CONST_STRING(interp, "runtime/parrot/");
-    VTABLE_push_string(interp, paths, entry);
     entry = CONST_STRING(interp, "./");
     VTABLE_push_string(interp, paths, entry);
     if (!STRING_IS_NULL(versionlib)) {


More information about the parrot-commits mailing list