summaryrefslogtreecommitdiff
path: root/vim
diff options
context:
space:
mode:
authorJan Nieuwenhuizen <janneke@gnu.org>2004-07-16 16:13:22 +0000
committerJan Nieuwenhuizen <janneke@gnu.org>2004-07-16 16:13:22 +0000
commitf122caaad45fafe7e76e65c04ec073be873b4cb0 (patch)
tree498501ce566c9433a272d9e4dde7b59fc8998030 /vim
parent661868d5a3e37b857f14b792e6639ec8c7914c27 (diff)
(note): Remove
extraneous closing brace.
Diffstat (limited to 'vim')
-rw-r--r--vim/SConscript7
1 files changed, 3 insertions, 4 deletions
diff --git a/vim/SConscript b/vim/SConscript
index eb04b01a89..40d915a4c4 100644
--- a/vim/SConscript
+++ b/vim/SConscript
@@ -1,7 +1,7 @@
# -*-python-*-
-Import ('env')
-sources = env['src_glob'] (env, '*.vim') + ['lilypond-words.vim']
+Import ('env', 'install', 'src_glob')
+sources = src_glob ('*.vim') + ['lilypond-words.vim']
e = env.Copy ()
a = '$PYTHON $srcdir/buildscripts/lilypond-words.py --words --vim --dir=${TARGET.dir}'
@@ -12,5 +12,4 @@ e.Command ('lilypond-words.vim',
'#/ly/engraver-init.ly',],
a)
-dir = env['DESTDIR'] + env['sharedir_package_version'] + '/vim'
-env.Install (dir, sources)
+install (sources, env['sharedir_package_version'] + '/vim')