diff options
Diffstat (limited to 'scons/codeine.py')
-rw-r--r-- | scons/codeine.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scons/codeine.py b/scons/codeine.py index f65d97c..b56f50d 100644 --- a/scons/codeine.py +++ b/scons/codeine.py @@ -42,7 +42,7 @@ def generate( env ): def CheckKdeLibs( context ): # ideally should be able to tell bksys what version we need context.Message( 'Checking for KDElibs 3.3...' ) - kde_version = os.popen("kde-config --version|grep KDE").read().strip().split()[1] + kde_version = os.popen("tde-config --version|grep KDE").read().strip().split()[1] result = int( kde_version[0] ) == 3 and int( kde_version[2] ) >= 3 context.Result( result ) return result |