mirror of
https://github.com/opnsense/src.git
synced 2026-04-23 23:28:37 -04:00
bison, keeping full compatibility with our previous yacc implementation. Also bring the ability to create reentrant parser This fix bin/140309 [1] PR: bin/140309 [1] Submitted by: Philippe Pepiot <ksh@philpep.org> [1] Approved by: des (mentor) MFC after: 1 month
15 lines
260 B
Bash
15 lines
260 B
Bash
#! /bin/sh
|
|
# postinst script for byacc
|
|
|
|
set -e
|
|
|
|
if [ $1 != "upgrade" ] ; then
|
|
update-alternatives \
|
|
--install /usr/bin/yacc yacc /usr/bin/byacc 80 \
|
|
--slave /usr/share/man/man1/yacc.1.gz yaccman \
|
|
/usr/share/man/man1/byacc.1.gz
|
|
fi
|
|
|
|
#DEBHELPER#
|
|
|
|
exit 0
|