X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=scripts%2FSConscript;h=a69a637a839766cdbd4b664d7f27c3ed80bacebf;hb=543171165412bc915d8ea1f308d070c74924b2f1;hp=dca5f89a52f5edcdde72542e10b267481a2ba2eb;hpb=6b13be765d6b1181ed76eed6c987e3db37c03f5d;p=lilypond.git diff --git a/scripts/SConscript b/scripts/SConscript index dca5f89a52..a69a637a83 100644 --- a/scripts/SConscript +++ b/scripts/SConscript @@ -1,11 +1,10 @@ # -*-python-*- -Import ('env') -sources = env['src_glob'] (env, '*.py') -gens = map (env.AT_COPY, sources) -dir = env['DESTDIR'] + env['bindir'] -env.Install (dir, gens) -env.Alias ('install', env['bindir']) +Import ('env', 'install', 'src_glob') +sources = src_glob ('*.py') +scripts = map (env.AT_COPY, sources) + +install (scripts, env['bindir']) po = env.Command ('lilypond.po', sources, env['pocommand']) env.Alias ('po-update', po)