| Summary: | Install of opiekey missing links to otp-md[45] | ||
|---|---|---|---|
| Product: | Base System | Reporter: | Lyndon Nerenberg <lyndon> |
| Component: | bin | Assignee: | freebsd-bugs (Nobody) <bugs> |
| Status: | Closed FIXED | ||
| Severity: | Affects Only Me | ||
| Priority: | Normal | ||
| Version: | 4.0-CURRENT | ||
| Hardware: | Any | ||
| OS: | Any | ||
State Changed From-To: open->closed |
The makefile for opiekey neglects to install the indicated links for the binary and manpage. Fix: Apply the following patch to /usr/src/usr.bin/opiekey/Makefile: echo x - opie.diff sed 's/^X//' >opie.diff << 'END-of-opie.diff' X--- Makefile 1999/11/15 22:32:21 1.1 X+++ Makefile 1999/11/15 22:33:43 X@@ -11,6 +11,11 @@ X DPADD= ${LIBOPIE} ${LIBMD} X LDADD= -lopie -lmd X X+LINKS= ${BINDIR}/opiekey ${BINDIR}/otp-md4 X+LINKS+= ${BINDIR}/opiekey ${BINDIR}/otp-md5 X+ X+MLINKS= opiekey.1 otp-md4.1 opiekey.1 otp-md5.1 X+ X .PATH: ${OPIE_DIST} X X .include <bsd.prog.mk> END-of-opie.diff exit