Blob Blame History Raw
diff -up tre-0.7.5/python/tre-python.c.chicken tre-0.7.5/python/tre-python.c
diff -up tre-0.7.5/python/setup.py.chicken tre-0.7.5/python/setup.py
--- tre-0.7.5/python/setup.py.chicken	2006-12-10 07:02:57.000000000 +0100
+++ tre-0.7.5/python/setup.py	2007-11-08 18:10:12.000000000 +0100
@@ -32,6 +32,8 @@ SOURCES = ["tre-python.c"]
 
 INCDIRS = ospath(["..", "../lib"])
 
+LIBDIRS = ospath(["../lib/.libs"])
+
 setup(
     name = "tre",
     version = VERSION,
@@ -46,6 +48,7 @@ setup(
 	    SOURCES,
 	    include_dirs = INCDIRS,
             define_macros = [("HAVE_CONFIG_H", None)],
+	    library_dirs = LIBDIRS,
 	    libraries=["tre"]
 	),
     ],