mirror of
https://git.freebsd.org/ports.git
synced 2025-06-18 19:20:36 -04:00
- Install data_files into ${DOCSDIR} instead of ${PREFIX} - Allow concurrent installation for bin/amalgamate.py and ${DOCSDIR} PR: 261159 Approved by: lwhsu (python) MFH: 2022Q1 (ports compliance)
11 lines
293 B
Python
11 lines
293 B
Python
--- setup.py.orig 2022-01-18 11:48:00 UTC
|
|
+++ setup.py
|
|
@@ -26,7 +26,7 @@ setup_kwargs = {
|
|
],
|
|
"zip_safe": False,
|
|
"scripts": ['amalgamate.py'],
|
|
- "data_files": [("", ['LICENSE', 'README.rst']),],
|
|
+ "data_files": [("%%DOCSDIR%%", ['LICENSE', 'README.rst']),],
|
|
}
|
|
|
|
|