Subject: two Makefile bugs were overlooked (#117)
Index:	etc/chroot/Makefile,man/man5/Makefile 2.11BSD

Description:
	Somehow two Makefiles were overlooked during the massive
	update done recently.

Repeat-By:
	cd /usr/src/etc/chroot
	make all

	Note the error produced by 'ld'.  
Fix:
	The problem was a typo, the "-o" flag was put (or left) in the
	wrong place.

	The chapter 5 man page Makefile was missing 'shells' in the list
	of man pages to format and install.

	Apply the following patch.
==========================================================================
*** /usr/src/etc/chroot/Makefile.old	Mon Jan 25 23:29:11 1993
--- /usr/src/etc/chroot/Makefile	Wed Feb  3 15:43:06 1993
***************
*** 28,34 ****
  all: chroot
  
  chroot: ${LIBC}
! 	${CC} -o ${SEPFLAG} $@ ${CFLAGS} $@.c
  
  chroot.0: ${MANSRC}
  	/usr/man/manroff ${MANSRC} > ${MAN}
--- 28,34 ----
  all: chroot
  
  chroot: ${LIBC}
! 	${CC} ${SEPFLAG} -o $@ ${CFLAGS} $@.c
  
  chroot.0: ${MANSRC}
  	/usr/man/manroff ${MANSRC} > ${MAN}
*** /usr/src/man/man5/Makefile.old	Mon Jan 18 09:33:56 1993
--- /usr/src/man/man5/Makefile	Thu Feb  4 08:53:29 1993
***************
*** 22,28 ****
  	dir.5 disktab.5 dtab.5 dump.5 fs.5 fstab.5 gettytab.5 \
  	group.5 hosts.5 map3270.5 mtab.5 networks.5 passwd.5 \
  	phones.5 plot.5 printcap.5 protocols.5 remote.5 resolver.5 \
! 	services.5 stack.5 tar.5 termcap.5 tp.5 ttys.5 types.5 \
  	tzfile.5 utmp.5 uuencode.5 vfont.5 vgrindefs.5
  OBJS=	L-devices.0 L-dialcodes.0 L.aliases.0 L.cmds.0 L.sys.0 \
  	USERFILE.0 a.out.0 acct.0 aliases.0 ar.0 core.0 dbx.0 \
--- 22,28 ----
  	dir.5 disktab.5 dtab.5 dump.5 fs.5 fstab.5 gettytab.5 \
  	group.5 hosts.5 map3270.5 mtab.5 networks.5 passwd.5 \
  	phones.5 plot.5 printcap.5 protocols.5 remote.5 resolver.5 \
! 	services.5 shells.5 stack.5 tar.5 termcap.5 tp.5 ttys.5 types.5 \
  	tzfile.5 utmp.5 uuencode.5 vfont.5 vgrindefs.5
  OBJS=	L-devices.0 L-dialcodes.0 L.aliases.0 L.cmds.0 L.sys.0 \
  	USERFILE.0 a.out.0 acct.0 aliases.0 ar.0 core.0 dbx.0 \
***************
*** 29,35 ****
  	dir.0 disktab.0 dtab.0 dump.0 fs.0 fstab.0 gettytab.0 \
  	group.0 hosts.0 map3270.0 mtab.0 networks.0 passwd.0 \
  	phones.0 plot.0 printcap.0 protocols.0 remote.0 resolver.0 \
! 	services.0 stack.0 tar.0 termcap.0 tp.0 ttys.0 types.0 \
  	tzfile.0 utmp.0 uuencode.0 vfont.0 vgrindefs.0
  
  .SUFFIXES: .5 .0
--- 29,35 ----
  	dir.0 disktab.0 dtab.0 dump.0 fs.0 fstab.0 gettytab.0 \
  	group.0 hosts.0 map3270.0 mtab.0 networks.0 passwd.0 \
  	phones.0 plot.0 printcap.0 protocols.0 remote.0 resolver.0 \
! 	services.0 shells.0 stack.0 tar.0 termcap.0 tp.0 ttys.0 types.0 \
  	tzfile.0 utmp.0 uuencode.0 vfont.0 vgrindefs.0
  
  .SUFFIXES: .5 .0
