1

While installing Kerberos I'm facing an error at making a file by running the following command:

make

This is the error I'm facing:

yacc getdate.y

make[2]: yacc: Command not found

make[2]: *** [getdate.c] Error 127

make[2]: Leaving directory `/home/kevin/Documents/krb5-1.12.1/src/kadmin/cli'

make[1]: *** [all-recurse] Error 1

make[1]: Leaving directory `/home/kevin/Documents/krb5-1.12.1/src/kadmin'

make: *** [all-recurse] Error 1

Please help me how to deal with it...

user3279174
  • 99
  • 3
  • 11

1 Answers1

2

Thanks to Rowland Shaw and Michael-O in the comments, I got it working with the instructions here: how to install Lex and Yacc in Ubuntu?

The problem is that yacc isn't installed. Install yacc (with apt-get it's sudo apt-get install byacc flex) and it should work.

Community
  • 1
  • 1
Milo P
  • 1,377
  • 2
  • 31
  • 40