]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/topdocs/SConscript
(note): Remove
[lilypond.git] / Documentation / topdocs / SConscript
index d3752f4e4cb23a08bda8f0b0a6adfeaeda59119b..9de9dcb0c1945c4bbadbc3baada68a7b49274dda 100644 (file)
@@ -1,13 +1,14 @@
 # -*-python-*-
 
-Import ('env')
-tely = env['glob'] (env, '*.tely')
-texi = env['glob'] (env, '*.texi') + map (env.TEXI, tely)
+Import ('env', 'src_glob', 'install')
+
+tely = src_glob ('*.tely')
+texi = src_glob ('*.texi')
+
 txt = map (env.TXT, texi)
 html = map (env.HTML, texi)
+
 env.Alias ('doc', txt)
 env.Alias ('doc', html)
 
-dir = env['DESTDIR'] + env['sharedir_doc_package']
-env.Install (dir, txt)
-env.Alias ('install', dir)
+install (txt, env['sharedir_doc_package'])