From owner-freebsd-current Wed Mar 1 04:18:09 1995 Return-Path: current-owner Received: (from majordom@localhost) by freefall.cdrom.com (8.6.9/8.6.6) id EAA25079 for current-outgoing; Wed, 1 Mar 1995 04:18:09 -0800 Received: from godzilla.zeta.org.au (godzilla.zeta.org.au [203.2.228.34]) by freefall.cdrom.com (8.6.9/8.6.6) with ESMTP id EAA25069 for ; Wed, 1 Mar 1995 04:18:03 -0800 Received: (from bde@localhost) by godzilla.zeta.org.au (8.6.9/8.6.9) id XAA30402; Wed, 1 Mar 1995 23:07:36 +1100 Date: Wed, 1 Mar 1995 23:07:36 +1100 From: Bruce Evans Message-Id: <199503011207.XAA30402@godzilla.zeta.org.au> To: current@FreeBSD.org, jhay@mikom.csir.co.za Subject: Re: bootparamd makefile still broken Sender: current-owner@FreeBSD.org Precedence: bulk >My patch this morning was not complete. I never tested make install - stupidly >thinking that it would work :( The install program never get a destination >directory. Here is another patch that should also be added. I think this >should be the last one for these makefiles :) I can think of futher improvements :-). > cp ${DESTDIR}/usr/include/rpcsvc/bootparam_prot.x . > rpcgen -h -o bootparam_prot.h bootparam_prot.x - the path should be to the rpcsvc source directory, ${RPCSVC}. - someone should fix cp -f so that the rm and cp commands can be merged. - the removing and copying can be avoided using cd ${RPCSVC}; rpcgen -h -o ${.OBJDIR}/bootparam_prot.h} bootparam_prot.x The cd seems to be necessary to stop rpcgen from screwing up the #includes. - there should a dependency on $PRPCSVC}/bootparam_prot.x Bruce