From f8a3d735c6deaf8d720c6a768e9df9a76d7a0428 Mon Sep 17 00:00:00 2001 From: "Rafael H. Schloming" Date: Mon, 24 Aug 2009 22:39:13 +0000 Subject: 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 --- python/qpid_config.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'python/qpid_config.py') 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") -- cgit v1.2.1