~ubuntu-branches/debian/stretch/vifm/stretch

« back to all changes in this revision

Viewing changes to debian/postinst~

  • Committer: Bazaar Package Importer
  • Author(s): Edelhard Becker
  • Date: 2008-04-25 21:55:56 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20080425215556-dbopd8mgbvro2y5i
Tags: 0.3a-3
make vifm build-depend on automake and libtool (Closes: #477735)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#!/bin/sh
2
2
 
3
 
if [ -x /usr/bin/vim ]  
4
 
then
5
 
        /usr/bin/vim -esc ":helptags /home/ebecker/.vim/doc/ | :quit"
 
3
if which helpztags >/dev/null 2>&1; then
 
4
  helpztags /usr/share/vim/vimcurrent/doc
6
5
fi
 
6
 
 
7
exit 0