Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 1 May 2013 10:00:01 GMT
From:      dfilter@FreeBSD.ORG (dfilter service)
To:        freebsd-bugs@FreeBSD.org
Subject:   Re: conf/174071: commit references a PR
Message-ID:  <201305011000.r41A01Ls088828@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help
The following reply was made to PR conf/174071; it has been noted by GNATS.

From: dfilter@FreeBSD.ORG (dfilter service)
To: bug-followup@FreeBSD.org
Cc:  
Subject: Re: conf/174071: commit references a PR
Date: Wed,  1 May 2013 09:56:16 +0000 (UTC)

 Author: benno
 Date: Wed May  1 09:56:09 2013
 New Revision: 250143
 URL: http://svnweb.freebsd.org/changeset/base/250143
 
 Log:
   Optimize SUBDIR_OVERRIDE such that SUBDIR isn't automatically defined if
   SUBDIR_OVERRIDE is defined.
   
   PR:		conf/174071
   Submitted by:	Garrett Cooper <yaneurabeya@gmail.com>
   Sponsored by:	EMC / Isilon Storage Division
 
 Modified:
   head/Makefile.inc1
 
 Modified: head/Makefile.inc1
 ==============================================================================
 --- head/Makefile.inc1	Wed May  1 09:20:13 2013	(r250142)
 +++ head/Makefile.inc1	Wed May  1 09:56:09 2013	(r250143)
 @@ -58,6 +58,9 @@
  # use that new version.  And the new (dynamically-linked) /bin/sh
  # will expect to find appropriate libraries in /lib and /libexec.
  #
 +.if defined(SUBDIR_OVERRIDE)
 +SUBDIR=	${SUBDIR_OVERRIDE}
 +.else
  SUBDIR=	share/info lib libexec
  SUBDIR+=bin
  .if ${MK_GAMES} != "no"
 @@ -96,9 +99,6 @@ SUBDIR+=etc
  SUBDIR+= ${_DIR}
  .endif
  .endfor
 -
 -.if defined(SUBDIR_OVERRIDE)
 -SUBDIR=		${SUBDIR_OVERRIDE}
  .endif
  
  .if defined(NOCLEAN)
 _______________________________________________
 svn-src-all@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/svn-src-all
 To unsubscribe, send any mail to "svn-src-all-unsubscribe@freebsd.org"
 



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