summaryrefslogtreecommitdiffstats
path: root/php-composer-spdx-licenses-rpm.patch
blob: f7b3f7ab66d8077272a315a7e193705600504db6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
diff -up ./src/SpdxLicenses.php.rpm ./src/SpdxLicenses.php
--- ./src/SpdxLicenses.php.rpm	2021-11-18 13:15:53.000000000 +0100
+++ ./src/SpdxLicenses.php	2021-11-18 13:22:10.402686746 +0100
@@ -213,7 +213,7 @@ class SpdxLicenses
      */
     public static function getResourcesDir()
     {
-        return dirname(__DIR__) . '/res';
+        return (getenv('BUILDROOT_SPDX')?:'') . '/usr/share/php-composer-spdx-licenses';
     }
 
     /**
diff -up ./tests/SpdxLicensesTest.php.rpm ./tests/SpdxLicensesTest.php
--- ./tests/SpdxLicensesTest.php.rpm	2021-11-18 13:15:53.000000000 +0100
+++ ./tests/SpdxLicensesTest.php	2021-11-18 13:21:44.972772614 +0100
@@ -75,12 +75,6 @@ class SpdxLicensesTest extends TestCase
             is_dir($dir),
             'Expected resources directory to exist.'
         );
-
-        $this->assertEquals(
-            realpath($dir),
-            realpath(__DIR__ . '/../res'),
-            'Expected resources directory to be "res" (relative to project root).'
-        );
     }
 
     /**