summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-11-05 21:46:06 -0500
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-11-05 21:46:06 -0500
commit2571a6dbf39b786f4e4ff33a7a8e59683563b482 (patch)
tree3652f6be82c7d6d87c0e31b6ca31f802ff1abc95
parenta36ac8e178fbff4f7ae92cb51d669c3b5206786a (diff)
downloadtdeio-locate-2571a6dbf39b786f4e4ff33a7a8e59683563b482.tar.gz
tdeio-locate-2571a6dbf39b786f4e4ff33a7a8e59683563b482.zip
Rename kde libraries to tde
-rw-r--r--admin/kde.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/admin/kde.py b/admin/kde.py
index 92e22a2..a736e3b 100644
--- a/admin/kde.py
+++ b/admin/kde.py
@@ -4,8 +4,8 @@
import os, re, types
from SCons.Script.SConscript import SConsEnvironment
-# Returns the name of the shared object (i.e. libkdeui.so.4)
-# referenced by a libtool archive (like libkdeui.la)
+# Returns the name of the shared object (i.e. libtdeui.so.4)
+# referenced by a libtool archive (like libtdeui.la)
def getSOfromLA(lafile):
contents = open(lafile, 'r').read()
match = re.search("^dlname='([^']*)'$", contents, re.M)
@@ -114,8 +114,8 @@ def detect_kde(env):
else:
try:
tmplibdir = os.popen(kde_config+' --expandvars --install lib').read().strip()
- libkdeuiSO = env.join(tmplibdir, getSOfromLA(env.join(tmplibdir,'/libkdeui.la')) )
- m = re.search('(.*)/lib/libtqt.*', os.popen('ldd ' + libkdeuiSO + ' | grep libtqt').read().strip().split()[2])
+ libtdeuiSO = env.join(tmplibdir, getSOfromLA(env.join(tmplibdir,'/libtdeui.la')) )
+ m = re.search('(.*)/lib/libtqt.*', os.popen('ldd ' + libtdeuiSO + ' | grep libtqt').read().strip().split()[2])
except: m=None
if m:
qtdir = m.group(1)