]> git.llucax.com Git - software/sercom-old.git/commitdiff
sc_fetch y sc_codegen no aceptan más un directorio de bibliotecas pero usan el del...
authorLeandro Lucarella <llucax@gmail.com>
Sat, 5 Mar 2005 17:53:29 +0000 (17:53 +0000)
committerLeandro Lucarella <llucax@gmail.com>
Sat, 5 Mar 2005 17:53:29 +0000 (17:53 +0000)
src/sc_codegen
src/sc_fetch

index 07d952969061746cd734cad71b0daf18a74efa2e..8aa175ca33adc53a63df98114a2658d5ecdf84a6 100755 (executable)
@@ -1,10 +1,8 @@
 #!/usr/bin/php
 <?php // vim: set binary noeol et sw=4 sts=4:
 
-// Si me pasan un directorio de bibliotecas, lo uso.
-if (@$argv[1]) {
-    set_include_path(get_include_path().':'.$argv[1]);
-}
+// Incluyo directorio del ejecutable como posible directorio de bibliotecas
+set_include_path(get_include_path().':'.dirname($argv[0]));
 
 $LOGLEVEL = ERROR;
 
index a1a9ef023c5201c92409bc9df191fe15499200ba..5d3c16a7a3c419e07ddc8b0d2e87b57c2c1e5e01 100755 (executable)
@@ -1,10 +1,8 @@
 #!/usr/bin/php4
 <?php // vim: set binary noeol et sw=4 sts=4:
 
-// Si me pasan un directorio de bibliotecas, lo uso.
-if (@$argv[1]) {
-    set_include_path(get_include_path().':'.$argv[1]);
-}
+// Incluyo directorio del ejecutable como posible directorio de bibliotecas
+set_include_path(get_include_path().':'.dirname($argv[0]));
 
 require_once 'T/general.php';