From aa81ad0888fae3e779ad01bd7aa073d3c6849127 Mon Sep 17 00:00:00 2001 From: "V. Armando Sole" Date: Thu, 23 Nov 2017 11:46:18 +0100 Subject: [PATCH] Adapt to new setup.py --- cx_setup.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/cx_setup.py b/cx_setup.py index 3e8a1a541..a8ae0685c 100644 --- a/cx_setup.py +++ b/cx_setup.py @@ -79,7 +79,8 @@ def load_PyQt4_Qt(finder, module): print("Error building PyMca") sys.exit(1) -cmd = "python setup.py install --install-lib %s --distutils" % PyMcaInstallationDir +cmd = "python setup.py install --install-lib %s --install-data %s --distutils" % \ + (PyMcaInstallationDir, PyMcaInstallationDir) if os.system(cmd): print("Error building PyMca") sys.exit(1)