Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 16 Sep 1997 01:56:03 -0700
From:      John-Mark Gurney <gurney_j@efn.org>
To:        John-Mark Gurney <gurney_j@resnet.uoregon.edu>
Cc:        Simon Shapiro <Shimon@i-Connect.Net>, freebsd-current@FreeBSD.ORG, Bruce Evans <bde@zeta.org.au>
Subject:   Re: Make Release Fails...
Message-ID:  <19970916015603.51039@hydrogen.nike.efn.org>
In-Reply-To: <19970916012306.17827@hydrogen.nike.efn.org>; from John-Mark Gurney on Tue, Sep 16, 1997 at 01:23:06AM -0700
References:  <XFMail.970916005156.Shimon@i-Connect.Net> <19970916012306.17827@hydrogen.nike.efn.org>

next in thread | previous in thread | raw e-mail | index | archive | help
John-Mark Gurney scribbled this message on Sep 16:
> Simon Shapiro scribbled this message on Sep 16:
> I believe that this will fix it... right now I'm testing it out myself
> and it looks like it got past were it needed it to be:

nope... this didn't fix it... looking why the newly build headers aren't
being installed while the others are (*.x and some *.h)...

ok.. hear we go.. it turns out that src/include/Makefile isn't recursing
into the subdirs upon a beforeinstall.. before Bruce explicitately
wrapped the recursion to limit it to installhdrs.. but now that we
have switched to beforeinstall to install the files it wasn't recursing..

try this patch instead (you don't need the other one, it just takes
more time, and makes your build output larger ;) ):

how is this one Bruce?  I'm testing now, but almost possitive this will
fix it...

Index: Makefile
===================================================================
RCS file: /home/ncvs/src/include/Makefile,v
retrieving revision 1.64
diff -c -r1.64 Makefile
*** Makefile	1997/09/14 03:32:44	1.64
--- Makefile	1997/09/16 08:49:01
***************
*** 66,72 ****
  
  beforeinstall: installhdrs ${SHARED}
  
! .if make(installhdrs)
  installhdrs: _SUBDIR
  .endif
  installhdrs:
--- 66,72 ----
  
  beforeinstall: installhdrs ${SHARED}
  
! .if make(installhdrs) || make(beforeinstall)
  installhdrs: _SUBDIR
  .endif
  installhdrs:

-- 
  John-Mark Gurney                          Modem/FAX: +1 541 683 6954
  Cu Networking

  Live in Peace, destroy Micro$oft, support free software, run FreeBSD



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?19970916015603.51039>