Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 11 May 2003 14:24:42 -0700 (PDT)
From:      Alexey Zelkin <phantom@FreeBSD.org>
To:        doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org
Subject:   cvs commit: www/share/mk web.site.mk
Message-ID:  <200305112124.h4BLOgxX016663@repoman.freebsd.org>

next in thread | raw e-mail | index | archive | help
phantom     2003/05/11 14:24:42 PDT

  FreeBSD doc repository

  Modified files:
    share/mk             web.site.mk 
  Log:
  Unconditionally set 'NO_SUBDIR' define.
  
  web.site.mk includes bsd.subdir.mk via bsd.obj.mk which is responsible
  for processing of 'SUBDIR' make variable.  But since we are handling
  'SUBDIR' here explicitly, doing same thing (second time!) via
  bsd.subdir.mk's rules makes no sense and only adds disk IO overhead.
  
  Some numbers... (for 'make -DENGLISH_ONLY -DWEB_ONLY' in www/en):
  
  [before]
  $ grep ^=== out.make | wc -l
       272
  $ grep ^=== out.make | sort -u | wc -l
        78
  
  [after]
  $ grep ^=== out.make | wc -l
        78
  
  Revision  Changes    Path
  1.45      +7 -1      www/share/mk/web.site.mk



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