summaryrefslogtreecommitdiffstats
path: root/languages/cpp/app_templates/kscons_kxt/SConscript-doc
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-11-15 21:42:20 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-11-15 21:42:20 -0600
commit93907d7e7a2741818d4b5e1c3ea645f784f7347e (patch)
tree15b6037c86d3e19bb6be3e56eaaf33576faa53df /languages/cpp/app_templates/kscons_kxt/SConscript-doc
parent7ccec9def581eca60cd30bbcd6bda08024d81879 (diff)
downloadtdevelop-93907d7e7a2741818d4b5e1c3ea645f784f7347e.tar.gz
tdevelop-93907d7e7a2741818d4b5e1c3ea645f784f7347e.zip
Automatically update admin submodule and copy sustem libtool files before first build
Fix FTBFS in many TDE sample projects Place TDE sample projects in a TDE category instead of a KDE category
Diffstat (limited to 'languages/cpp/app_templates/kscons_kxt/SConscript-doc')
-rw-r--r--languages/cpp/app_templates/kscons_kxt/SConscript-doc8
1 files changed, 4 insertions, 4 deletions
diff --git a/languages/cpp/app_templates/kscons_kxt/SConscript-doc b/languages/cpp/app_templates/kscons_kxt/SConscript-doc
index 6769a359..0c3e07e7 100644
--- a/languages/cpp/app_templates/kscons_kxt/SConscript-doc
+++ b/languages/cpp/app_templates/kscons_kxt/SConscript-doc
@@ -13,7 +13,7 @@ myenv=env.Copy()
## The following looks complicated but it is not
## We first define a function to install all files as documentation
## The documentation is of course lying in subfolders from here
-## * normal files are installed under KDEDOC/destination
+## * normal files are installed under TDEDOC/destination
## * meinproc files are not installed, but processed into a single
## index.cache.bz2 which is installed afterwards
@@ -36,7 +36,7 @@ i_am_a_documentation_writer = 0
def processfolder(folder, lang, destination=""):
# folder is the folder to process
# lang is the language
- # destination is the subdirectory in KDEDOC
+ # destination is the subdirectory in TDEDOC
docfiles = glob.glob(folder+"/???*.*") # file files that are at least 4 chars wide :)
@@ -68,7 +68,7 @@ def processfolder(folder, lang, destination=""):
docbook_list.append( file )
continue
- myenv.KDEinstall('KDEDOC', lang+'/'+destination, file)
+ myenv.TDEinstall('TDEDOC', lang+'/'+destination, file)
# Now process the index.docbook files ..
if len(docbook_list) == 0:
@@ -80,7 +80,7 @@ def processfolder(folder, lang, destination=""):
for file in docbook_list:
myenv.Depends( folder+'index.cache.bz2', file )
myenv.Meinproc( folder+'/index.cache.bz2', folder+'/index.docbook' )
- myenv.KDEinstall( 'KDEDOC', lang+'/'+destination, folder+'/index.cache.bz2' )
+ myenv.TDEinstall( 'TDEDOC', lang+'/'+destination, folder+'/index.cache.bz2' )
###################################################################
# TELL WHICH FOLDERS TO PROCESS