*BSD News Article 51068


Return to BSD News archive

Newsgroups: comp.bugs.2bsd
Path: euryale.cc.adfa.oz.au!newshost.anu.edu.au!harbinger.cc.monash.edu.au!yarrina.connect.com.au!classic.iinet.com.au!news.uoregon.edu!vixen.cso.uiuc.edu!howland.reston.ans.net!spool.mu.edu!bloom-beacon.mit.edu!newsserver.pixel.kodak.com!frankensun.altair.com!wlbr!sms
From: sms@wlv.iipo.gtegsc.com (Steven M. Schultz)
Subject: uname(3) man page not installed by Makefile (#275)
Sender: news@wlbr.iipo.gtegsc.com (Steven M. Schultz)
Organization: GTE Government Systems, Thousand Oaks
Message-ID: <DEpw4r.HA9@wlbr.iipo.gtegsc.com>
X-Nntp-Posting-Host: wlv.iipo.gtegsc.com
Date: Mon, 11 Sep 1995 01:29:14 GMT
Lines: 92

Subject: uname(3) man page not installed by Makefile (#275)
Index:	man3/Makefile 2.11BSD

Description:
	The uname(3) man page is not formatted or installed by the
	Makefile.

Repeat-By:
	Recompile the system from the top level (cd /usr/src; make build;
	make install).  A quicker method would be to "cd /usr/src/man/man3;
	make; make install".

	Note that the uname man page is not formatted or installed.

Fix:
	Apply the small patch to the Makefile below.  You may wish to 
	reformat and install the uname manpage.

	Cut where indicated and save to a file (/tmp/275).  Then:

		patch -p0 < /tmp/275
		cd /usr/src/man/man3
		/usr/man/manroff uname.3 > uname.0
		install -m 444 uname.0 /usr/man/cat3/uname.0

===================cut here===================
*** /usr/src/man/man3/Makefile.old	Sat Apr  1 22:47:58 1995
--- /usr/src/man/man3/Makefile	Sun Sep 10 18:03:02 1995
***************
*** 14,20 ****
  # IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
  # WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
  #
! #	@(#)Makefile	5.4.3 (2.11BSD) 1995/04/01
  #
  MDIR=	/usr/man/cat3
  SRCS1=	abort.3 abs.3 alarm.3 asinh.3 assert.3 atof.3 bstring.3 byteorder.3 \
--- 14,20 ----
  # IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
  # WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
  #
! #	@(#)Makefile	5.4.4 (2.11BSD) 1995/09/10
  #
  MDIR=	/usr/man/cat3
  SRCS1=	abort.3 abs.3 alarm.3 asinh.3 assert.3 atof.3 bstring.3 byteorder.3 \
***************
*** 33,39 ****
  	scanf.3 setbuf.3 setjmp.3 setuid.3 siginterrupt.3 signal.3 sin.3 \
  	sinh.3 sleep.3 sqrt.3 stdio.3 strftime.3 string.3 strtok.3 stty.3 \
  	swab.3 sysctl.3 syslog.3 \
! 	system.3 termcap.3 time.3 times.3 ttyname.3 ualarm.3 ungetc.3 \
  	usleep.3 utime.3 valloc.3 varargs.3
  OBJS1=	abort.0 abs.0 alarm.0 asinh.0 assert.0 atof.0 bstring.0 byteorder.0 \
  	compat-sys5.0 crypt.0 ctime.0 ctype.0 curses.0 dbm.0 daemon.0 \
--- 33,39 ----
  	scanf.3 setbuf.3 setjmp.3 setuid.3 siginterrupt.3 signal.3 sin.3 \
  	sinh.3 sleep.3 sqrt.3 stdio.3 strftime.3 string.3 strtok.3 stty.3 \
  	swab.3 sysctl.3 syslog.3 \
! 	system.3 termcap.3 time.3 times.3 ttyname.3 ualarm.3 uname.3 ungetc.3 \
  	usleep.3 utime.3 valloc.3 varargs.3
  OBJS1=	abort.0 abs.0 alarm.0 asinh.0 assert.0 atof.0 bstring.0 byteorder.0 \
  	compat-sys5.0 crypt.0 ctime.0 ctype.0 curses.0 dbm.0 daemon.0 \
***************
*** 51,57 ****
  	scanf.0 setbuf.0 setjmp.0 setuid.0 siginterrupt.0 signal.0 sin.0 \
  	sinh.0 sleep.0 sqrt.0 stdio.0 strftime.0 string.0 strtok.0 stty.0 \
  	swab.0 sysctl.0 syslog.0 \
! 	system.0 termcap.0 time.0 times.0 ttyname.0 ualarm.0 ungetc.0 \
  	usleep.0 utime.0 valloc.0 varargs.0
  REMO1=	edata.0 etext.0 j1.0 jn.0 ns_addr.0 ns_ntoa.0 y0.0 y1.0 yn.0 acos.0 \
  	asin.0 atan.0 atan2.0 atoi.0 atol.0 cos.0 dbm_clearerr.0 dbm_close.0 \
--- 51,57 ----
  	scanf.0 setbuf.0 setjmp.0 setuid.0 siginterrupt.0 signal.0 sin.0 \
  	sinh.0 sleep.0 sqrt.0 stdio.0 strftime.0 string.0 strtok.0 stty.0 \
  	swab.0 sysctl.0 syslog.0 \
! 	system.0 termcap.0 time.0 times.0 ttyname.0 ualarm.0 uname.0 ungetc.0 \
  	usleep.0 utime.0 valloc.0 varargs.0
  REMO1=	edata.0 etext.0 j1.0 jn.0 ns_addr.0 ns_ntoa.0 y0.0 y1.0 yn.0 acos.0 \
  	asin.0 atan.0 atan2.0 atoi.0 atol.0 cos.0 dbm_clearerr.0 dbm_close.0 \
*** /VERSION.old	Sun Sep 10 17:27:59 1995
--- /VERSION	Sun Sep 10 18:04:39 1995
***************
*** 1,4 ****
! Current Patch Level: 274
  
  2.11 BSD
  ============
--- 1,4 ----
! Current Patch Level: 275
  
  2.11 BSD
  ============