mirror of
https://github.com/Stichting-MINIX-Research-Foundation/pkgsrc-ng.git
synced 2025-10-07 02:50:44 -04:00
19 lines
499 B
Python
19 lines
499 B
Python
$NetBSD: patch-setup.py,v 1.1 2015/11/04 21:24:14 adam Exp $
|
|
|
|
Fix installation on Darwin.
|
|
|
|
--- setup.py.orig 2015-10-27 20:54:58.000000000 +0000
|
|
+++ setup.py
|
|
@@ -170,10 +170,6 @@ if sys.argv[1] == "build_exe":
|
|
if sys.platform == "win32" and False:
|
|
setup_kwargs["windows"] = scripts
|
|
|
|
-if sys.platform == "darwin":
|
|
- setup_kwargs["name"] = title
|
|
- setup_kwargs["version"] = "2.6.2"
|
|
-else:
|
|
- setup_kwargs["scripts"] = scripts
|
|
+setup_kwargs["scripts"] = scripts
|
|
|
|
setup(**setup_kwargs)
|