Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 6 Jan 1997 13:00:48 -0500 (EST)
From:      Chuck Robey <chuckr@glue.umd.edu>
To:        FreeBSD current <freebsd-current@freefall.FreeBSD.org>
Subject:   Possible make world breakage
Message-ID:  <Pine.OSF.3.95.970106125444.3220A-100000@maryann.eng.umd.edu>

next in thread | raw e-mail | index | archive | help
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!
----------------------------+-----------------------------------------------




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?Pine.OSF.3.95.970106125444.3220A-100000>