Author: rafl
Date: Fri Oct 28 03:37:29 2005
New Revision: 9608

Modified:
   /   (props changed)
   branches/debian/src/library.c
Log:
 [EMAIL PROTECTED]:  rafl | 2005-10-28 11:44:50 +0200
 * Changed Parrot_locate_runtime_file in src/library.c to make it find all
   runtime files when installed using the Debian package.


Modified: branches/debian/src/library.c
==============================================================================
--- branches/debian/src/library.c       (original)
+++ branches/debian/src/library.c       Fri Oct 28 03:37:29 2005
@@ -173,17 +173,22 @@ Parrot_locate_runtime_file(Interp *inter
         "runtime/parrot/include/",
         "runtime/parrot/",
         "./",
+        "lib/parrot/runtime/include/",
+        "lib/parrot/runtime/",
         NULL
     };
     const char *library_paths[] = {
         "runtime/parrot/library/",
         "runtime/parrot/",
         "./",
+        "lib/parrot/runtime/library/",
+        "lib/parrot/runtime/",
         NULL
     };
     const char *dynext_paths[] = {
         "runtime/parrot/dynext/",
         "",
+        "lib/parrot/runtime/dynext/",
         NULL
     };
     const char **paths;

Reply via email to