summaryrefslogtreecommitdiffstats
path: root/phploc-rpm.patch
diff options
context:
space:
mode:
Diffstat (limited to 'phploc-rpm.patch')
-rw-r--r--phploc-rpm.patch34
1 files changed, 34 insertions, 0 deletions
diff --git a/phploc-rpm.patch b/phploc-rpm.patch
new file mode 100644
index 0000000..fc04bb6
--- /dev/null
+++ b/phploc-rpm.patch
@@ -0,0 +1,34 @@
+diff -up ./phploc.rpm ./phploc
+--- ./phploc.rpm 2014-05-03 18:50:56.000000000 +0200
++++ ./phploc 2014-05-03 18:51:38.000000000 +0200
+@@ -1,4 +1,4 @@
+-#!/usr/bin/env php
++#!/usr/bin/php
+ <?php
+ /**
+ * phploc
+@@ -42,23 +42,7 @@
+ * @since File available since Release 1.0.0
+ */
+
+-$loaded = false;
+-
+-foreach (array(__DIR__ . '/../../autoload.php', __DIR__ . '/vendor/autoload.php') as $file) {
+- if (file_exists($file)) {
+- require $file;
+- $loaded = true;
+- break;
+- }
+-}
+-
+-if (!$loaded) {
+- die(
+- 'You need to set up the project dependencies using the following commands:' . PHP_EOL .
+- 'wget http://getcomposer.org/composer.phar' . PHP_EOL .
+- 'php composer.phar install' . PHP_EOL
+- );
+-}
++require 'SebastianBergmann/PHPLOC/autoload.php';
+
+ $application = new SebastianBergmann\PHPLOC\CLI\Application;
+ $application->run();