summaryrefslogtreecommitdiffstats
path: root/phpcpd-rpm.patch
diff options
context:
space:
mode:
Diffstat (limited to 'phpcpd-rpm.patch')
-rw-r--r--phpcpd-rpm.patch34
1 files changed, 34 insertions, 0 deletions
diff --git a/phpcpd-rpm.patch b/phpcpd-rpm.patch
new file mode 100644
index 0000000..d904f78
--- /dev/null
+++ b/phpcpd-rpm.patch
@@ -0,0 +1,34 @@
+diff -up ./phpcpd.rpm ./phpcpd
+--- ./phpcpd.rpm 2014-05-04 10:32:06.000000000 +0200
++++ ./phpcpd 2014-05-04 10:32:59.000000000 +0200
+@@ -1,4 +1,4 @@
+-#!/usr/bin/env php
++#!/usr/bin/php
+ <?php
+ /**
+ * phpcpd
+@@ -46,23 +46,7 @@
+ ini_set('mbstring.func_overload', 0);
+ ini_set('mbstring.internal_encoding', NULL);
+
+-$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/PHPCPD/autoload.php';
+
+ $application = new SebastianBergmann\PHPCPD\CLI\Application;
+ $application->run();