X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=elisp%2FSConscript;h=380490c08b26828c19bc921719c39a9095576bc8;hb=63a3195112d1e2753e2699442841f3c760b2f705;hp=665e871af6408390089800b2d10fea85e6592ff2;hpb=0ff36fefc5c1275ae7855a2c6bbc23d0df71db72;p=lilypond.git diff --git a/elisp/SConscript b/elisp/SConscript index 665e871af6..380490c08b 100644 --- a/elisp/SConscript +++ b/elisp/SConscript @@ -1,16 +1,15 @@ # -*-python-*- -Import ('env') -sources = env['src_glob'] (env, '*.el') + ['lilypond-words.el'] +Import ('env', 'install', 'src_glob') +sources = src_glob ('*.el') + ['lilypond-words.el'] e = env.Copy () a = '$PYTHON $srcdir/buildscripts/lilypond-words.py --el --dir=${TARGET.dir}' e.Command ('lilypond-words.el', - ['#/lily/my-lily-lexer.cc', + ['#/lily/lily-lexer.cc', '#/buildscripts/lilypond-words.py', - '#/scm/new-markup.scm', + '#/scm/markup.scm', '#/ly/engraver-init.ly',], a) -dir = env['sharedir_package_version'] + '/elisp' -env.Install (dir, sources) +install (sources, env['sharedir_package_version'] + '/elisp')