From: Heikki Junes Date: Tue, 23 Mar 2004 15:00:53 +0000 (+0000) Subject: ignore errors due to rmdir of non-empty directories. X-Git-Tag: release/2.1.35~22 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=0e24ff0755807a4d6cfcb7aed63c7b04b7166e3a;p=lilypond.git ignore errors due to rmdir of non-empty directories. --- diff --git a/ChangeLog b/ChangeLog index b657eb3daf..a07f772b47 100644 --- a/ChangeLog +++ b/ChangeLog @@ -58,6 +58,8 @@ * vim/GNUmakefile: try to remove empty dirs during uninstalling, put vimrc in EXTRA_DIST_FILES. + * vim/GNUmakefile: ignore errors due to rmdir of non-empty directories. + 2004-03-22 Heikki Junes * config.make.in: add vimdir. diff --git a/vim/GNUmakefile b/vim/GNUmakefile index a52855eae9..9d3dc74a6d 100644 --- a/vim/GNUmakefile +++ b/vim/GNUmakefile @@ -36,19 +36,19 @@ local-install: local-uninstall: rm $(vimdir)/compiler/lilypond.vim - rmdir -p $(vimdir)/compiler + -rmdir -p $(vimdir)/compiler rm $(vimdir)/ftdetect/lilypond.vim - rmdir -p $(vimdir)/ftdetect + -rmdir -p $(vimdir)/ftdetect rm $(vimdir)/ftplugin/lilypond.vim - rmdir -p $(vimdir)/ftplugin + -rmdir -p $(vimdir)/ftplugin rm $(vimdir)/indent/lilypond.vim - rmdir -p $(vimdir)/indent + -rmdir -p $(vimdir)/indent rm $(vimdir)/syntax/lilypond.vim - rmdir -p $(vimdir)/syntax + -rmdir -p $(vimdir)/syntax $(LILYPOND_WORDS): cd $(topdir) && $(PYTHON) buildscripts/lilypond-words.py --words --vim --dir=$(builddir)/vim/$(outconfbase)