Subject: Addendum to 124-127 (#128) Index: lib,man/Makefile 2.11BSD Description: To slightly misquote Moe (from the 3 Stooges): "We wouldn't be programmers if we didn't forget something". ;-) A couple of minor steps were left out of the 'wait4' (#124-127) installation proceedures. Repeat-By: Examination. Fix: The Makefile for the chapter 2 man pages was not updated. Apply the following patch: ==============================cut here================================== *** /usr/src/man/man2/Makefile.old Mon Jan 18 09:33:49 1993 --- /usr/src/man/man2/Makefile Thu Mar 18 22:53:27 1993 *************** *** 14,20 **** # IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED # WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. # ! # @(#)Makefile 5.4 (Berkeley) 7/9/88 # MDIR= /usr/man/cat2 SRCS= accept.2 access.2 acct.2 adjtime.2 bind.2 brk.2 chdir.2 chmod.2 \ --- 14,20 ---- # IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED # WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. # ! # @(#)Makefile 2.0 (2.11BSD GTE) 3/17/93 # MDIR= /usr/man/cat2 SRCS= accept.2 access.2 acct.2 adjtime.2 bind.2 brk.2 chdir.2 chmod.2 \ *************** *** 79,85 **** --- 79,89 ---- rm -f ${DESTDIR}${MDIR}/sendto.0 ln ${DESTDIR}${MDIR}/send.0 ${DESTDIR}${MDIR}/sendto.0 rm -f ${DESTDIR}${MDIR}/wait3.0 + rm -f ${DESTDIR}${MDIR}/wait4.0 + rm -f ${DESTDIR}${MDIR}/waitpid.0 ln ${DESTDIR}${MDIR}/wait.0 ${DESTDIR}${MDIR}/wait3.0 + ln ${DESTDIR}${MDIR}/wait.0 ${DESTDIR}${MDIR}/wait4.0 + ln ${DESTDIR}${MDIR}/wait.0 ${DESTDIR}${MDIR}/waitpid.0 rm -f ${DESTDIR}${MDIR}/fchmod.0 ln ${DESTDIR}${MDIR}/chmod.0 ${DESTDIR}${MDIR}/fchmod.0 rm -f ${DESTDIR}${MDIR}/fchown.0 ============================cut here===================================== The old rtp.0 man page was not removed and the new man pages for the "wait" calls were not installed: cd /usr/src/man/man2 nroff -h -man wait.2 > /usr/man/cat2/wait.0 cd /usr/man/cat2 rm -f wait3.0 ln wait.0 wait3.0 ln wait.0 wait4.0 ln wait.0 waitpid.0 rm -f rtp.0 Finally the rtp(2) syscall needs to be removed from the C library: ar d /lib/libc.a rtp.o ar d /usr/lib/libc_p.a rtp.o ranlib /lib/libc.a /usr/lib/libc_p.a