[svn:parrot] r41189 - trunk/src

allison at svn.parrot.org allison at svn.parrot.org
Thu Sep 10 22:34:09 UTC 2009


Author: allison
Date: Thu Sep 10 22:34:09 2009
New Revision: 41189
URL: https://trac.parrot.org/parrot/changeset/41189

Log:
[hll] Add language-specific library search path when 'load_language' is
called.

Modified:
   trunk/src/packfile.c

Modified: trunk/src/packfile.c
==============================================================================
--- trunk/src/packfile.c	Thu Sep 10 22:27:49 2009	(r41188)
+++ trunk/src/packfile.c	Thu Sep 10 22:34:09 2009	(r41189)
@@ -4808,6 +4808,8 @@
             PARROT_LIB_PATH_INCLUDE);
     Parrot_lib_add_path(interp, Parrot_str_append(interp, found_path, CONST_STRING(interp, "dynext/")),
             PARROT_LIB_PATH_DYNEXT);
+    Parrot_lib_add_path(interp, Parrot_str_append(interp, found_path, CONST_STRING(interp, "library/")),
+            PARROT_LIB_PATH_LIBRARY);
 
 
     /* Check if the file found was actually a bytecode file (.pbc extension) or


More information about the parrot-commits mailing list