#!/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;