Skip to content

Commit

Permalink
* install -D doesn't work on BSD based systems; migrate commands to i…
Browse files Browse the repository at this point in the history
…nstall -d
  • Loading branch information
jceb committed May 2, 2011
1 parent e5cbf7d commit a6b5c59
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@ build:
install:
for i in indent ftdetect ftplugin syntax; do \
find $$i -type f -name \*.py -o -type f -name \*.vim | while read f; do \
install -m 0644 -D $$f $(DESTDIR)$(VIMDIR)/$$f; \
install -m 0755 -d $(DESTDIR)$(VIMDIR); \
install -m 0644 $$f $(DESTDIR)$(VIMDIR)/$$f; \
done; \
done

Expand Down
2 changes: 2 additions & 0 deletions README.org
Original file line number Diff line number Diff line change
Expand Up @@ -367,6 +367,8 @@ Information about the license are found in the file LICENSE
*** make a video about vim-orgmode
*** implement better object structure for Heading.parent and Heading.children. At the moment the already created objects are not reused, especially for iterchildern this is important!
*** orgmode taglist integration doesn't work with txtfmt plugin: setf txt.txtfmt
*** in original Org-mode keybindings perform different actions based on the context! This functionality should be integrated in vim-orgmode as well
*** DONE install -D doesn't work on BSD based systems; migrate commands to install -d
*** DONE add support for debian package management
*** DONE add changelog like in debian
*** DONE implement commands
Expand Down
6 changes: 6 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
vim-orgmode (0.1.0-18) unstable; urgency=low

* install -D doesn't work on BSD based systems; migrate commands to install -d

-- Jan Christoph Ebersbach <[email protected]> Mon, 02 May 2011 15:41:17 +0900

vim-orgmode (0.1.0-17) unstable; urgency=low

* merge date-plugin from sotte
Expand Down

0 comments on commit a6b5c59

Please sign in to comment.