summaryrefslogtreecommitdiff
blob: c9d16fd0faf11a74e4ea8996c5e896ca8387bfd2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
--- build.py.orig	2003-08-13 15:45:42.000000000 +0200
+++ build.py	2003-08-13 15:49:19.000000000 +0200
@@ -624,7 +624,7 @@
 
 
 def checkThreading ():
-        qtmodlib = modDir + '/libqtcmodule.so'
+        qtmodlib = sipModuleDir + '/libqtcmodule.so'
         os.system ('ldd ' + qtmodlib + ' > lddtmp')
         f = open ('lddtmp', 'r')
         buff = f.read ()
@@ -816,7 +816,7 @@
     if sipModuleDir is None:
         error("The SIP module/library could not be found. Use the -s argument to set the correct directory")
 
-    proPatches["LIBS"] = [re.compile("@BL_SIPMODDIR@",re.M), sipModuleDir]
+    proPatches["LIBS"] = [re.compile("@BL_SIPMODDIR@",re.M), (sipModuleDir + " -L" + modDir)]
 
     inform("%s contains the SIP module." % (sipModuleDir))