Browse Source

Merge pull request #95 from henrikbjorn/autoload-relative

AutoloadGenerator.php miscalculates the path
Jordi Boggiano 13 years ago
parent
commit
59206e1a11
1 changed files with 3 additions and 2 deletions
  1. 3 2
      src/Composer/Autoload/AutoloadGenerator.php

+ 3 - 2
src/Composer/Autoload/AutoloadGenerator.php

@@ -111,11 +111,12 @@ EOF;
             foreach ($package->getAutoload() as $type => $mapping) {
                 foreach ($mapping as $namespace => $path) {
                     $autoloads[$type][] = array(
-                        'namespace'   => $namespace,
-                        'path'      => $installPath.'/'.$path,
+                        'namespace' => $namespace,
+                        'path'      => empty($installPath) ? $path : $installPath.'/'.$path,
                     );
                 }
             }
+
         }
 
         foreach ($autoloads as $type => $maps) {