From 874eb2febdcc146b5454d450d76853866841b368 Mon Sep 17 00:00:00 2001 From: Stefan van der Walt Date: Tue, 3 Nov 2009 08:44:23 +0200 Subject: [PATCH] build: Fix c extension. --- scikits/image/_build.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scikits/image/_build.py b/scikits/image/_build.py index fc899e0a..d03fccd4 100644 --- a/scikits/image/_build.py +++ b/scikits/image/_build.py @@ -20,7 +20,7 @@ def cython(pyx_files, working_path=''): else: for pyxfile in [os.path.join(working_path, f) for f in pyx_files]: # make a backup of the good c files - c_file = pyxfile[:-4] + 'c' + c_file = pyxfile[:-4] + '.c' c_file_new = c_file + '.new' # run cython compiler