Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
mostly typos.
  • Loading branch information
kaworu committed May 19, 2015
1 parent 425c743 commit bd9a6d1
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,7 @@ build it with its own malloc. Answer `y` to the following question during the

undefined reference to \`crypt'
------------------------------
Perl1 use `crypt(3)` which is not in your libc. Nowadays it belongs in libcrypt
on most systems.
Perl1 use `crypt(3)` which is not in your libc, it's probably in `libcrypt`.

### Fix:
At the *Configure* step try to add `-lcrypt` to the additional ld flags:
Expand All @@ -50,10 +49,10 @@ Edit the Makefile and add `-lcrypt` manually to the **libs** make variable.

perl.y:73.1-5: syntax error, unexpected %type, expecting string or char or identifier
-------------------------------------------------------------------------------------
Your `yacc(1)` is incompatible with Perl1. It is probably GNU bison.
Your `yacc(1)` is incompatible with Perl1, it is probably GNU bison.

### Fix:
Install a Berkley Yacc (for example byacc under Debian) and then modify
Install a Berkley Yacc (for example byacc under Debian) and then edit the
**Makefile** in order to use it:

% sed -i.bak -e 's/yacc/byacc/' Makefile
Expand Down Expand Up @@ -90,7 +89,7 @@ Can't open /etc/termcap.
Your system doesn't provide a termcap file, but the tests assume that it exist.

### Fix:
You can either get a termcap file and install it as /etc/termcap, or modify the
You can either get a termcap file and install it as /etc/termcap, or edit the
tests to check for another file:

sed -i -e 's/termcap/fstab/' t/*

0 comments on commit bd9a6d1

Please sign in to comment.