diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-02-07 18:37:47 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-02-07 18:37:47 -0600 |
commit | 3b2845b322cd059ae514d7fa15c53c2e63d63946 (patch) | |
tree | 9603b3b1d84aaa805ea65765882c56ffcc9ed166 /parts/appwizard/common/scons/admin/kde.py | |
parent | dc443b2b654028d86764e354f10fe2286c1e65dd (diff) | |
download | tdevelop-3b2845b322cd059ae514d7fa15c53c2e63d63946.tar.gz tdevelop-3b2845b322cd059ae514d7fa15c53c2e63d63946.zip |
Rename include subdirectory to tde
Diffstat (limited to 'parts/appwizard/common/scons/admin/kde.py')
-rw-r--r-- | parts/appwizard/common/scons/admin/kde.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/parts/appwizard/common/scons/admin/kde.py b/parts/appwizard/common/scons/admin/kde.py index 037b4af0..63be3e42 100644 --- a/parts/appwizard/common/scons/admin/kde.py +++ b/parts/appwizard/common/scons/admin/kde.py @@ -140,10 +140,10 @@ def detect_kde(env): if os.path.isfile(kdeincludes + "/klineedit.h"): print GREEN + "ok " + kdeincludes + NORMAL else: - if os.path.isfile(kdeprefix+"/include/kde/klineedit.h"): + if os.path.isfile(kdeprefix+"/include/tde/klineedit.h"): # Debian, Fedora probably - print YELLOW + "the kde headers were found in " + kdeprefix + "/include/kde/" + NORMAL - kdeincludes = kdeprefix + "/include/kde/" + print YELLOW + "the kde headers were found in " + kdeprefix + "/include/tde/" + NORMAL + kdeincludes = kdeprefix + "/include/tde/" else: print RED + "The kde includes were NOT found" + NORMAL env.Exit(1) @@ -214,7 +214,7 @@ def generate(env): """+BOLD+"""* datadir """+NORMAL+""": install path for the data, ie: /usr/local/share """+BOLD+"""* libdir """+NORMAL+""": install path for the libs, ie: /usr/lib """+BOLD+"""* libsuffix """+NORMAL+""": suffix of libraries on amd64, ie: 64, 32 -"""+BOLD+"""* kdeincludes"""+NORMAL+""": path to the kde includes (/usr/include/kde on debian, ...) +"""+BOLD+"""* kdeincludes"""+NORMAL+""": path to the kde includes (/usr/include/tde on debian, ...) """+BOLD+"""* qtincludes """+NORMAL+""": same punishment, for qt includes (/usr/include/qt on debian, ...) """+BOLD+"""* tdelibs """+NORMAL+""": path to the kde libs, for linking the programs """+BOLD+"""* qtlibs """+NORMAL+""": same punishment, for qt libraries |