diff options
author | John Mandereau <john.mandereau@gmail.com> | 2008-08-24 13:34:05 +0200 |
---|---|---|
committer | John Mandereau <john.mandereau@gmail.com> | 2008-08-24 13:34:05 +0200 |
commit | 78e056eab5f094cfbe0fe02b8a3bbdc4cb1ea09a (patch) | |
tree | b0ee23b05486d70ff809fec44edd7960946c5be1 /vim | |
parent | ce49c007e453c5575cc82fc0c26f2d1e8ff11803 (diff) |
Fix "make uninstall"
Diffstat (limited to 'vim')
-rw-r--r-- | vim/GNUmakefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/vim/GNUmakefile b/vim/GNUmakefile index b05ec0e3c7..fd82e40164 100644 --- a/vim/GNUmakefile +++ b/vim/GNUmakefile @@ -27,8 +27,9 @@ local-install: local-uninstall: for a in compiler ftdetect ftplugin indent syntax; do \ rm $(DESTDIR)$(vimdir)/$$a/lilypond.vim ; \ - -rmdir -p $(DESTDIR)$(vimdir)/$$a ; \ + rmdir $(DESTDIR)$(vimdir)/$$a; \ done + -rmdir -p $(DESTDIR)$(vimdir) $(LILYPOND_WORDS): cd $(top-src-dir) && $(PYTHON) buildscripts/lilypond-words.py --words --vim --dir=$(top-build-dir)/vim/$(outconfbase) |