psyclpc/src/hosts/be/beyacc

11 lines
182 B
Bash
Executable File

#!/bin/sh
#
# Wrapper to call the proper parser generator: byacc if it is installed,
# otherwise bison.
if [ $(type -p byacc) ]; then
exec byacc $*
else
exec bison -y $*
fi