home *** CD-ROM | disk | FTP | other *** search
/ Chip 1995 March / CHIP3.mdf / slakinst / contents / scripts / bison < prev    next >
Encoding:
Text File  |  1995-08-04  |  281 b   |  9 lines

  1. # Since bison can function in yacc mode, we'll add a shell script to
  2. # do this if you didn't install Berkeley yacc:
  3. if [ ! -r usr/bin/yacc ]; then
  4.   echo '# emulate yacc' > usr/bin/yacc
  5.   echo 'bison -y $*' >> usr/bin/yacc
  6.   chown root.bin usr/bin/yacc
  7.   chmod 755 usr/bin/yacc
  8. fi
  9.