summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStuart Rackham <srackham@methods.co.nz>2012-08-29 08:45:45 +1200
committerStuart Rackham <srackham@methods.co.nz>2012-08-29 08:45:45 +1200
commit1fc6b49c258cda41a54bb376862706fb07409470 (patch)
tree9f664f6957e65830be139b8d7dd72983df91ad46
parent554ddf096c5b580644b8130495845c3ea7d3a00f (diff)
downloadasciidoc-1fc6b49c258cda41a54bb376862706fb07409470.tar.gz
Makefile: Fixed sh compatibility issue. See
https://groups.google.com/group/asciidoc/browse_thread/thread/753a52b2af85fcfc/04c9091b0856fc13
-rw-r--r--Makefile.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.in b/Makefile.in
index d8672c3..128b533 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -146,7 +146,7 @@ fixconfpath:
install-vim:
@for d in $(DESTDIR)/$(vimdir) /etc/vim; do \
- if ! test -d $$d; then continue; fi ; \
+ if test ! -d $$d; then continue; fi ; \
echo "installing Vim files in $$d" ; \
$(INSTALL) -d $$d/syntax ; \
$(INSTALL_DATA) vim/syntax/asciidoc.vim $$d/syntax ; \
@@ -156,7 +156,7 @@ install-vim:
uninstall-vim:
@for d in $(DESTDIR)/$(vimdir) /etc/vim; do \
- if ! test -d $$d; then continue; fi ; \
+ if test ! -d $$d; then continue; fi ; \
echo "uninstalling Vim files in $$d" ; \
rm -f $$d/syntax/asciidoc.vim ; \
rm -f $$d/ftdetect/asciidoc_filetype.vim ; \