Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 10 Sep 2014 12:46:33 -0600
From:      Ian Lepore <ian@FreeBSD.org>
To:        Tim Daneliuk <tundra@tundraware.com>
Cc:        FreeBSD Stable <freebsd-stable@freebsd.org>
Subject:   Re: 10-STABLE Buildworld Failing
Message-ID:  <1410374793.1150.425.camel@revolution.hippie.lan>
In-Reply-To: <54109820.1030905@tundraware.com>
References:  <54109820.1030905@tundraware.com>

next in thread | previous in thread | raw e-mail | index | archive | help
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





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