summaryrefslogtreecommitdiff
path: root/wscript
diff options
context:
space:
mode:
authorKarl Lindén <karl.j.linden@gmail.com>2015-04-11 22:15:34 +0200
committerKarl Lindén <karl.j.linden@gmail.com>2015-04-11 22:15:34 +0200
commit5f85e9731d6cd3d753aa227dfc8cfe920ce0296c (patch)
tree3a8734791254442137a4502c6259fdfa743fa5d4 /wscript
parent55ccbaf5c2d844168e8edc289f24157591c89efc (diff)
downloadjack2-5f85e9731d6cd3d753aa227dfc8cfe920ce0296c.tar.gz
rename the html_source_dir variable to html_build_dir (the directory contains built files, not sources)
Diffstat (limited to 'wscript')
-rw-r--r--wscript10
1 files changed, 5 insertions, 5 deletions
diff --git a/wscript b/wscript
index 83f427ec..11319d44 100644
--- a/wscript
+++ b/wscript
@@ -736,7 +736,7 @@ def build(bld):
#bld.add_subdirs('tests')
if bld.env['BUILD_DOXYGEN_DOCS'] == True:
- html_source_dir = "build/default/html"
+ html_build_dir = "build/default/html"
if bld.cmd == 'install':
share_dir = bld.options.destdir + bld.env['PREFIX'] + '/share/jack-audio-connection-kit'
html_install_dir = share_dir + '/reference/html/'
@@ -745,7 +745,7 @@ def build(bld):
shutil.rmtree(html_install_dir)
Logs.pprint('CYAN', "Removing old doxygen documentation installation done.")
Logs.pprint('CYAN', "Installing doxygen documentation...")
- shutil.copytree(html_source_dir, html_install_dir)
+ shutil.copytree(html_build_dir, html_install_dir)
Logs.pprint('CYAN', "Installing doxygen documentation done.")
elif bld.cmd =='uninstall':
Logs.pprint('CYAN', "Uninstalling doxygen documentation...")
@@ -753,12 +753,12 @@ def build(bld):
shutil.rmtree(share_dir)
Logs.pprint('CYAN', "Uninstalling doxygen documentation done.")
elif bld.cmd =='clean':
- if os.access(html_source_dir, os.R_OK):
+ if os.access(html_build_dir, os.R_OK):
Logs.pprint('CYAN', "Removing doxygen generated documentation...")
- shutil.rmtree(html_source_dir)
+ shutil.rmtree(html_build_dir)
Logs.pprint('CYAN', "Removing doxygen generated documentation done.")
elif bld.cmd =='build':
- if not os.access(html_source_dir, os.R_OK):
+ if not os.access(html_build_dir, os.R_OK):
os.popen(bld.env.DOXYGEN).read()
else:
Logs.pprint('CYAN', "doxygen documentation already built.")