From owner-freebsd-current Sun Aug 17 13:20:30 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id NAA19469 for current-outgoing; Sun, 17 Aug 1997 13:20:30 -0700 (PDT) Received: from mail.ziplink.net (mail.ziplink.net [199.232.240.10]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id NAA19464 for ; Sun, 17 Aug 1997 13:20:25 -0700 (PDT) Received: from pencom.com (bos-ip-1-27.ziplink.net [199.232.252.27]) by mail.ziplink.net (8.8.7/8.8.5) with ESMTP id QAA29520 for ; Sun, 17 Aug 1997 16:20:13 -0400 (EDT) Message-ID: <33F75CCA.99CEA3A@pencom.com> Date: Sun, 17 Aug 1997 16:19:22 -0400 From: Eric Jones X-Mailer: Mozilla 4.02b7 [en] (X11; I; FreeBSD 3.0-CURRENT i386) MIME-Version: 1.0 To: freebsd-current@freebsd.org Subject: include Makefile - am I the only one having trouble with this? Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-current@freebsd.org X-Loop: FreeBSD.org Precedence: bulk My make worlds stopped working a month or more ago when trying to install osreldate.h. I figured the problwm was obvious and it would get fixed soon, but since it hasn't I'm wondering if it's something I've screwed up. It looks to me like the SRCDIR/include makefile is building osreldate.h into ${.CURDIR}, but the install occurs from ${.CURDIR}/rpc. Did everybody else just stuff a copy of osreldate.h into include/rpc? Included below is my patch for this: *** Makefile Sat Aug 16 10:25:00 1997 --- Makefile.orig Sat Aug 2 15:43:02 1997 *************** *** 74,87 **** cd ${.CURDIR}/protocols; \ ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 \ ${PROTOFILES} ${DESTDIR}/usr/include/protocols cd ${.CURDIR}/rpc; \ ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 \ ${RPCFILES} ${DESTDIR}/usr/include/rpc ! cd ${.CURDIR}; \ ! ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 osreldate.h \ ${DESTDIR}/usr/include .for i in ${LFILES} ln -sf sys/$i ${DESTDIR}/usr/include/$i .endfor .for i in ${MFILES} ln -sf machine/$i ${DESTDIR}/usr/include/$i --- 74,86 ---- cd ${.CURDIR}/protocols; \ ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 \ ${PROTOFILES} ${DESTDIR}/usr/include/protocols cd ${.CURDIR}/rpc; \ ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 \ ${RPCFILES} ${DESTDIR}/usr/include/rpc ! ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 osreldate.h \ ${DESTDIR}/usr/include .for i in ${LFILES} ln -sf sys/$i ${DESTDIR}/usr/include/$i .endfor .for i in ${MFILES} ln -sf machine/$i ${DESTDIR}/usr/include/$i