diff options
| author | Alan Conway <aconway@apache.org> | 2014-06-26 00:03:01 +0000 |
|---|---|---|
| committer | Alan Conway <aconway@apache.org> | 2014-06-26 00:03:01 +0000 |
| commit | 97aa3f4d5f5b22616d23fcba303d34932c5a68cb (patch) | |
| tree | dfa7edd62ee706456cbd2909240a45f074fa24f1 | |
| parent | 0577dc180774590474fbc9a08f3d883ad79422ba (diff) | |
| download | qpid-python-97aa3f4d5f5b22616d23fcba303d34932c5a68cb.tar.gz | |
NO-JIRA: Fix tools/setup.py, was not respecting install prefix.
- Was installing into absolute /usr directories, changed to install relative to prefix.
- Was installing to non-standard "/usr/shared" directory, changed to Unix standard "<prefix>/share"
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1605637 13f79535-47bb-0310-9956-ffa450edef68
| -rwxr-xr-x | qpid/tools/setup.py | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/qpid/tools/setup.py b/qpid/tools/setup.py index 808a800222..52dc27aaaf 100755 --- a/qpid/tools/setup.py +++ b/qpid/tools/setup.py @@ -7,9 +7,9 @@ # to you under the Apache License, Version 2.0 (the # "License"); you may not use this file except in compliance # with the License. You may obtain a copy of the License at -# +# # http://www.apache.org/licenses/LICENSE-2.0 -# +# # Unless required by applicable law or agreed to in writing, # software distributed under the License is distributed on an # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY @@ -47,13 +47,13 @@ setup(name="qpid-tools", "src/py/qpid-stat", "src/py/qpid-tool", "src/py/qmf-tool"], - data_files=[("/usr/libexec", ["src/py/qpid-qls-analyze"]), - ("/usr/shared/qpid-tools/python/qlslibs", - ["src/py/qlslibs/anal.py", - "src/py/qlslibs/efp.py", - "src/py/qlslibs/err.py", - "src/py/qlslibs/jrnl.py", - "src/py/qlslibs/utils.py"])], + data_files=[("libexec", ["src/py/qpid-qls-analyze"]), + ("share/qpid-tools/python/qlslibs", + ["src/py/qlslibs/anal.py", + "src/py/qlslibs/efp.py", + "src/py/qlslibs/err.py", + "src/py/qlslibs/jrnl.py", + "src/py/qlslibs/utils.py"])], url="http://qpid.apache.org/", license="Apache Software License", description="Diagnostic and management tools for Apache Qpid brokers.", |
