From owner-freebsd-current Mon Jan 6 10:00:55 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.4/8.8.4) id KAA19075 for current-outgoing; Mon, 6 Jan 1997 10:00:55 -0800 (PST) Received: from po2.glue.umd.edu (root@po2.glue.umd.edu [129.2.128.45]) by freefall.freebsd.org (8.8.4/8.8.4) with ESMTP id KAA19064 for ; Mon, 6 Jan 1997 10:00:52 -0800 (PST) Received: from maryann.eng.umd.edu (maryann.eng.umd.edu [129.2.103.22]) by po2.glue.umd.edu (8.8.3/8.7.3) with ESMTP id NAA01651 for ; Mon, 6 Jan 1997 13:00:49 -0500 (EST) Received: from localhost (chuckr@localhost) by maryann.eng.umd.edu (8.8.3/8.7.3) with SMTP id NAA03239 for ; Mon, 6 Jan 1997 13:00:48 -0500 (EST) X-Authentication-Warning: maryann.eng.umd.edu: chuckr owned process doing -bs Date: Mon, 6 Jan 1997 13:00:48 -0500 (EST) From: Chuck Robey X-Sender: chuckr@maryann.eng.umd.edu To: FreeBSD current Subject: Possible make world breakage Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-current@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk I'm still trying to get the make world on my new machine done. In /usr/src/usr.sbin/amd/doc, it failed making the .info file. Sure enough, when I went back to my older system and did the make clean, it failed there too. The interesting line from the build was: makeinfo --no-split -I /usr/src/usr.sbin/amd/doc -I /usr/src/usr.sbin/amd/doc /amdref.texinfo -o amdref.info Notice how "/amdref.texinfo" is the target ... I checked into what was wrong, found a line in bsd.info.mk that was referencing .SRCDIR instead of SRCDIR, made a change, and it worked fine. Could someone give me a review on this (is it an error, is this the fix?) ROOT:/usr/src/share/mk:1303 >cvs diff -u cvs diff: Diffing . Index: bsd.info.mk =================================================================== RCS file: /home/ncvs/src/share/mk/bsd.info.mk,v retrieving revision 1.20 diff -u -r1.20 bsd.info.mk --- bsd.info.mk 1997/01/05 15:33:36 1.20 +++ bsd.info.mk 1997/01/06 17:51:53 @@ -42,7 +42,7 @@ .if defined(SRCS) ${INFO}.info: ${SRCS} - ${MAKEINFO} ${MAKEINFOFLAGS} -I ${.CURDIR} -I ${SRCDIR} ${SRCS:S/^/${.SRCDIR}\//g} -o ${INFO}.info + ${MAKEINFO} ${MAKEINFOFLAGS} -I ${.CURDIR} -I ${SRCDIR} ${SRCS:S/^/${SRCDIR}\//g} -o ${INFO}.info .endif depend: _SUBDIR ----------------------------+----------------------------------------------- Chuck Robey | Interests include any kind of voice or data chuckr@eng.umd.edu | communications topic, C programming, and Unix. 9120 Edmonston Ct #302 | Greenbelt, MD 20770 | I run Journey2 and picnic, both FreeBSD (301) 220-2114 | version 3.0 current -- and great FUN! ----------------------------+-----------------------------------------------