From: Jan Nieuwenhuizen Date: Thu, 15 Jul 2004 15:21:07 +0000 (+0000) Subject: * SConstruct (symlink): Add dvips and music-drawing-routines.ps. X-Git-Tag: release/2.3.7~47 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=3fbfa28ecafc2bbc530a100acccfcc9cda0272e2;p=lilypond.git * SConstruct (symlink): Add dvips and music-drawing-routines.ps. * SConstruct (config_vars): Add CPPDEFINES. (env): Set checksums type to "content". (save_config_cache): Do not exit after configuring when using checksums (the default) instead of timestamps. --- diff --git a/SConstruct b/SConstruct index 8d47e8c873..ecfe82bba6 100644 --- a/SConstruct +++ b/SConstruct @@ -695,24 +695,24 @@ env.Alias ('release', patch) #### web web_base = os.path.join (outdir, 'web') web_ball = os.path.join (web_base, '.tar.gz') -env['footify'] = 'MAILADDRESS=bug-lilypond@gnu.org $PYTHON stepmake/bin/add-html-footer.py --name=lilypond --version=$version' +env['footify'] = 'MAILADDRESS=bug-lilypond@gnu.org $PYTHON stepmake/bin/add-html-footer.py --name=lilypond --version=$TOPLEVEL_VERSION' env['web_ext'] = ['.html', '.ly', '.midi', '.pdf', '.png', '.ps.gz', '.txt',] # compatible make heritits # fixme: generate in $outdir is cwd/builddir env.Command (web_ball, 'doc', ['$PYTHON buildscripts/mutopia-index.py -o examples.html ./', - 'cd $absbuild && $footify $$ (find . -name "*.html" -print)', + 'cd $absbuild && $footify $$(find . -name "*.html" -print)', # uhg? 'cd $absbuild && rm -f $$(find . -name "*.html~" -print)', 'cd $absbuild && find Documentation input \ -path foo $web_path -false \ - > $outdir/weblist', + > $out/weblist', '''echo '' > $absbuild/index.html''', '''echo 'Redirecting to the documentation index...' >> $absbuild/index.html''', # UGHR? all .html cruft in cwd goes into the web ball? - 'cd $absbuild && ls *.html >> $outdir/weblist', - 'cat $outdir/weblist | (cd $absbuild; \ + 'cd $absbuild && ls *.html >> $out/weblist', + 'cat $out/weblist | (cd $absbuild; \ GZIP=-9v tar -czf $web_ball -T -)',]) env.Alias ('web', web_ball)