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 | f8a3d735c6deaf8d720c6a768e9df9a76d7a0428 (patch) | |
| tree | cb90403593995698fd7ed95b2a54ce7f8162802c /python/qpid_config.py | |
| parent | 45ee72663547d326c79f50688d1cadb0320cc39e (diff) | |
| download | qpid-python-f8a3d735c6deaf8d720c6a768e9df9a76d7a0428.tar.gz | |
added Makefile with basic build/install/clean
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@807419 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'python/qpid_config.py')
| -rw-r--r-- | python/qpid_config.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/python/qpid_config.py b/python/qpid_config.py index 3cf6b69b7e..d740a53dfe 100644 --- a/python/qpid_config.py +++ b/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") |
