diff options
Diffstat (limited to 'languages/cpp/app_templates/kscons_kmdi/SConscript-doc')
-rw-r--r-- | languages/cpp/app_templates/kscons_kmdi/SConscript-doc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/languages/cpp/app_templates/kscons_kmdi/SConscript-doc b/languages/cpp/app_templates/kscons_kmdi/SConscript-doc index 6769a359..0c3e07e7 100644 --- a/languages/cpp/app_templates/kscons_kmdi/SConscript-doc +++ b/languages/cpp/app_templates/kscons_kmdi/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 |