Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 18 Jun 2013 10:54:48 +0900 (JST)
From:      Hiroki Sato <hrs@FreeBSD.org>
To:        gjb@FreeBSD.org
Cc:        svn-doc-head@FreeBSD.org, svn-doc-all@FreeBSD.org, doc-committers@FreeBSD.org
Subject:   Re: svn commit: r41942 - head/en_US.ISO8859-1/htdocs/releases
Message-ID:  <20130618.105448.381408355524516266.hrs@allbsd.org>
In-Reply-To: <201306180040.r5I0ecGb011693@svn.freebsd.org>
References:  <201306180040.r5I0ecGb011693@svn.freebsd.org>

next in thread | previous in thread | raw e-mail | index | archive | help
----Security_Multipart(Tue_Jun_18_10_54_48_2013_996)--
Content-Type: Text/Plain; charset=us-ascii
Content-Transfer-Encoding: 7bit

Glen Barber <gjb@FreeBSD.org> wrote
  in <201306180040.r5I0ecGb011693@svn.freebsd.org>:

gj> Author: gjb
gj> Date: Tue Jun 18 00:40:38 2013
gj> New Revision: 41942
gj> URL: http://svnweb.freebsd.org/changeset/doc/41942
gj>
gj> Log:
gj>   Fix a defined() conditional that began failing for me for no clear reason.
gj>
gj> Modified:
gj>   head/en_US.ISO8859-1/htdocs/releases/Makefile
gj>
gj> Modified: head/en_US.ISO8859-1/htdocs/releases/Makefile
gj> ==============================================================================
gj> --- head/en_US.ISO8859-1/htdocs/releases/Makefile	Tue Jun 18 00:01:55 2013	(r41941)
gj> +++ head/en_US.ISO8859-1/htdocs/releases/Makefile	Tue Jun 18 00:40:38 2013	(r41942)
gj> @@ -19,7 +19,7 @@ SUBDIR+=	7.0R 7.1R 7.2R 7.3R 7.4R
gj>  SUBDIR+=	8.0R 8.1R 8.2R 8.3R 8.4R
gj>  SUBDIR+=	9.0R 9.1R
gj>
gj> -.if defined $(NEW_BUILD)
gj> +.if defined($(NEW_BUILD))
gj>  SUBDIR=
gj>  .endif

 Both the original and your fix are wrong.  Please use the correct
 syntax "defined(NEW_BUILD)".  It is not a bmake specific issue.

-- Hiroki

----Security_Multipart(Tue_Jun_18_10_54_48_2013_996)--
Content-Type: application/pgp-signature
Content-Transfer-Encoding: 7bit

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.13 (FreeBSD)

iEYEABECAAYFAlG/vegACgkQTyzT2CeTzy1uFgCfRNrzvR2Pg3/eK+i9838Fambs
a4IAnivLqNnlLWTgwyv+YZ5HVK3vb9T1
=GMhD
-----END PGP SIGNATURE-----

----Security_Multipart(Tue_Jun_18_10_54_48_2013_996)----



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