diff options
| author | Rafael H. Schloming <rhs@apache.org> | 2009-08-24 22:39:13 +0000 |
|---|---|---|
| committer | Rafael H. Schloming <rhs@apache.org> | 2009-08-24 22:39:13 +0000 |
| commit | 61032606472c9cbac9dfd360de08a9b277e41cdf (patch) | |
| tree | 570070c6c911a9e97d85236d05b093c6ca948ca4 /qpid/python/qpid_config.py | |
| parent | c411874471352ab40344d49ddf779e5df82a634d (diff) | |
| download | qpid-python-61032606472c9cbac9dfd360de08a9b277e41cdf.tar.gz | |
added Makefile with basic build/install/clean
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@807419 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/python/qpid_config.py')
| -rw-r--r-- | qpid/python/qpid_config.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/qpid/python/qpid_config.py b/qpid/python/qpid_config.py index 3cf6b69b7e..d740a53dfe 100644 --- a/qpid/python/qpid_config.py +++ b/qpid/python/qpid_config.py @@ -19,7 +19,7 @@ import os -qpid_home = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) -amqp_spec = os.path.join(qpid_home, "specs", "amqp.0-10-qpid-errata.xml") -amqp_spec_0_8 = os.path.join(qpid_home, "specs", "amqp.0-8.xml") -amqp_spec_0_9 = os.path.join(qpid_home, "specs", "amqp.0-9.xml") +AMQP_SPEC_DIR=os.path.join(os.path.dirname(os.path.dirname(os.path.abspath(__file__))), "specs") +amqp_spec = os.path.join(AMQP_SPEC_DIR, "amqp.0-10-qpid-errata.xml") +amqp_spec_0_8 = os.path.join(AMQP_SPEC_DIR, "amqp.0-8.xml") +amqp_spec_0_9 = os.path.join(AMQP_SPEC_DIR, "amqp.0-9.xml") |
