From owner-freebsd-stable@FreeBSD.ORG Wed Sep 10 18:46:37 2014 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D4DC33B1 for ; Wed, 10 Sep 2014 18:46:37 +0000 (UTC) Received: from mho-01-ewr.mailhop.org (mho-03-ewr.mailhop.org [204.13.248.66]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id A97CAC4C for ; Wed, 10 Sep 2014 18:46:37 +0000 (UTC) Received: from [73.34.117.227] (helo=ilsoft.org) by mho-01-ewr.mailhop.org with esmtpsa (TLSv1:AES256-SHA:256) (Exim 4.72) (envelope-from ) id 1XRmua-0008g5-4n; Wed, 10 Sep 2014 18:46:36 +0000 Received: from [172.22.42.240] (revolution.hippie.lan [172.22.42.240]) by ilsoft.org (8.14.9/8.14.9) with ESMTP id s8AIkYWZ026780; Wed, 10 Sep 2014 12:46:34 -0600 (MDT) (envelope-from ian@FreeBSD.org) X-Mail-Handler: Dyn Standard SMTP by Dyn X-Originating-IP: 73.34.117.227 X-Report-Abuse-To: abuse@dyndns.com (see http://www.dyndns.com/services/sendlabs/outbound_abuse.html for abuse reporting information) X-MHO-User: U2FsdGVkX19zzryl38wf2Ogc/w6g2/Eu X-Authentication-Warning: paranoia.hippie.lan: Host revolution.hippie.lan [172.22.42.240] claimed to be [172.22.42.240] Subject: Re: 10-STABLE Buildworld Failing From: Ian Lepore To: Tim Daneliuk In-Reply-To: <54109820.1030905@tundraware.com> References: <54109820.1030905@tundraware.com> Content-Type: text/plain; charset="us-ascii" Date: Wed, 10 Sep 2014 12:46:33 -0600 Message-ID: <1410374793.1150.425.camel@revolution.hippie.lan> Mime-Version: 1.0 X-Mailer: Evolution 2.32.1 FreeBSD GNOME Team Port Content-Transfer-Encoding: 7bit Cc: FreeBSD Stable X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Sep 2014 18:46:37 -0000 On Wed, 2014-09-10 at 13:27 -0500, Tim Daneliuk wrote: > As of some recent SVN pulls (date unsure), we are seeing the problem below. > Any thoughts or help most welcome: > > > cc -O2 -pipe > -I/usr/src/usr.bin/svn/svn/../../../contrib/subversion/subversion/include > -I/usr/src/usr.bin/svn/svn/../../../contrib/subversion/subversion -I/usr/src > /usr.bin/svn/svn/.. -I/usr/src/usr.bin/svn/svn/../lib/libapr > -I/usr/src/usr.bin/svn/svn/../../../contrib/apr/include/arch/unix > -I/usr/src/usr.bin/svn/svn/../../../ > contrib/apr/include -I/usr/src/usr.bin/svn/svn/../lib/libapr_util > -I/usr/src/usr.bin/svn/svn/../../../contrib/apr-util/include/private > -I/usr/src/usr.bin/svn/svn/. > ./../../contrib/apr-util/include -I. -DHAS_ORGANIZATION_NAME -std=gnu99 > -Qunused-arguments -fstack-protector -Wno-pointer-sign -Wno-empty-body > -Wno-string-plus-int - > Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-value > -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -Wno-switch > -Wno-switch-enum > -Wno-knr-promoted-parameter -Wno-parentheses -c > /usr/src/usr.bin/svn/svn/../../../contrib/subversion/subversion/svn/util.c > --- svnlite.1 --- > sed -E 's,(^| |B|`)svn,\1svnlite,g' > /usr/src/usr.bin/svn/svn/../../../contrib/subversion/subversion/svn/svn.1 > > /usr/obj/usr/src/usr.bin/svn/svn/svnlite.1 > --- svnlite.1.gz --- > gzip -cn svnlite.1 > svnlite.1.gz > --- util.o --- > /usr/src/usr.bin/svn/svn/../../../contrib/subversion/subversion/svn/util.c:416:7: error: > expected ')' > ORGANIZATION_NAME > ^ > ./freebsd-organization.h:1:27: note: expanded from macro 'ORGANIZATION_NAME' > #define ORGANIZATION_NAME TundraWare Inc. > ^ > /usr/src/usr.bin/svn/svn/../../../contrib/subversion/subversion/svn/util.c:414:27: > note: to match this '(' > svn_stringbuf_appendcstr(default_msg, "Sponsored by:\t" > ^ > 1 error generated. > *** [util.o] Error code 1 > > It looks like you've set ORGANIZATION=TundraWare Inc. in make.conf or the build environment. If you include quotes it should work fine. Depending on where you set it, you may need to escape them or use outer single quotes to protect a set of inner double quotes, like one of: ORGANIZATION=\"TundraWare Inc.\" ORGANIZATION='"TundraWare Inc."' -- Ian