From ce9ca60c72eab960e18ac1ea826478df3e5ed82f Mon Sep 17 00:00:00 2001 From: Alexander Else Date: Mon, 21 Jul 2014 14:18:36 +1000 Subject: [PATCH] Fix src/build paths --- bindings/python/setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bindings/python/setup.py b/bindings/python/setup.py index f663e4e8..679666ba 100644 --- a/bindings/python/setup.py +++ b/bindings/python/setup.py @@ -36,8 +36,8 @@ except ImportError: from distutils.core import setup, Extension import sys, os -TOP_SRCDIR = os.environ.get('ABS_TOP_SRCDIR', '../../src') -TOP_BUILDDIR = os.environ.get('ABS_TOP_BUILDDIR', '../../src') +TOP_SRCDIR = os.environ.get('ABS_TOP_SRCDIR', '../..') +TOP_BUILDDIR = os.environ.get('ABS_TOP_BUILDDIR', '../..') setup(name = "py-rrdtool", version = "0.2.2", -- 2.47.2