]> CyberLeo.Net >> Repos - FreeBSD/stable/10.git/blob - contrib/byacc/package/debian/postinst
Copy head (r256279) to stable/10 as part of the 10.0-RELEASE cycle.
[FreeBSD/stable/10.git] / contrib / byacc / package / debian / postinst
1 #! /bin/sh
2 # postinst script for byacc
3
4 set -e
5
6 if [ $1 != "upgrade" ] ; then
7         update-alternatives \
8                 --install /usr/bin/yacc yacc /usr/bin/byacc 80 \
9                 --slave /usr/share/man/man1/yacc.1.gz yaccman \
10                         /usr/share/man/man1/byacc.1.gz
11 fi
12
13 #DEBHELPER#
14
15 exit 0