Hi!

I've found a typo in the PyKDE configure.py script that causes the "-d" option to be ignored. See the patch.

This caused trouble with 64-bit systems. But actually I think the best solution would be to make sure that the configuration scripts find out about the correct Python paths automatically.

Currently our RPM specfile passes the result of

python -c 'import site; print site.sitedirs[0];'

as the "-d" parameter. This seems odd to me because site.sitedirs[0] could as well be called from inside the configuration scripts ...

Cheers

Joe


-- Joachim Werner SUSE RD-TPM
--- configure.py
+++ configure.py	2004-05-28 14:46:19.603827812 +0200
@@ -700,7 +700,7 @@
             opt_concat = 1
 
         elif opt == "-d":
-            opt_pyqtmoddir = arg
+            opt_pykdemoddir = arg
         elif opt == "-g":
             opt_releasegil = 1

Reply via email to