From f902efca620e0ab0ead60dd73ba28e5f99a3631a Mon Sep 17 00:00:00 2001 From: "R. Tyler Ballance" Date: Fri, 14 Aug 2009 19:34:43 -0700 Subject: Move src/c/ to cheetah/c/ and update SetupConfig.py appropraitely --- SetupConfig.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'SetupConfig.py') diff --git a/SetupConfig.py b/SetupConfig.py index 52b6926..781ff0d 100644 --- a/SetupConfig.py +++ b/SetupConfig.py @@ -38,13 +38,13 @@ from distutils.core import Extension ext_modules=[ Extension("Cheetah._namemapper", - [os.path.join('src', 'c', '_namemapper.c')]), + [os.path.join('cheetah', 'c', '_namemapper.c')]), Extension("Cheetah._verifytype", - [os.path.join('src', 'c', '_verifytype.c')]), + [os.path.join('cheetah', 'c', '_verifytype.c')]), Extension("Cheetah._filters", - [os.path.join('src', 'c', '_filters.c')]), + [os.path.join('cheetah', 'c', '_filters.c')]), Extension('Cheetah._template', - [os.path.join('src', 'c', '_template.c')]), + [os.path.join('cheetah', 'c', '_template.c')]), ] ## Data Files and Scripts -- cgit v1.2.1