mirror of
https://github.com/Stichting-MINIX-Research-Foundation/netbsd.git
synced 2025-09-17 19:25:13 -04:00
13 lines
148 B
Bash
13 lines
148 B
Bash
#! /bin/sh
|
|
# prerm script for byacc
|
|
|
|
set -e
|
|
|
|
if [ $1 != "upgrade" ]; then
|
|
update-alternatives --remove yacc /usr/bin/byacc
|
|
fi
|
|
|
|
#DEBHELPER#
|
|
|
|
exit 0
|