diff options
Diffstat (limited to 'php-doctrine-orm-bin.patch')
-rw-r--r-- | php-doctrine-orm-bin.patch | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/php-doctrine-orm-bin.patch b/php-doctrine-orm-bin.patch new file mode 100644 index 0000000..7cf73e5 --- /dev/null +++ b/php-doctrine-orm-bin.patch @@ -0,0 +1,24 @@ +diff --git a/bin/doctrine.php b/bin/doctrine.php +index c735562..99014f4 100755 +--- a/bin/doctrine.php ++++ b/bin/doctrine.php +@@ -1,3 +1,4 @@ ++#!/usr/bin/php + <?php + /* + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +@@ -20,7 +21,13 @@ + use Symfony\Component\Console\Helper\HelperSet; + use Doctrine\ORM\Tools\Console\ConsoleRunner; + +-(@include_once __DIR__ . '/../vendor/autoload.php') || @include_once __DIR__ . '/../../../autoload.php'; ++require_once '/usr/share/php/Doctrine/Common/ClassLoader.php'; ++ ++$classLoader = new \Doctrine\Common\ClassLoader('Doctrine'); ++$classLoader->register(); ++ ++$classLoader = new \Doctrine\Common\ClassLoader('Symfony'); ++$classLoader->register(); + + $directories = array(getcwd(), getcwd() . DIRECTORY_SEPARATOR . 'config'); + |