From owner-freebsd-ia64@FreeBSD.ORG Sat Mar 8 17:30:01 2014 Return-Path: Delivered-To: freebsd-ia64@smarthost.ysv.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 E6BC5AAA for ; Sat, 8 Mar 2014 17:30:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id C173C819 for ; Sat, 8 Mar 2014 17:30:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.8/8.14.8) with ESMTP id s28HU08X016704 for ; Sat, 8 Mar 2014 17:30:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s28HU0pi016703; Sat, 8 Mar 2014 17:30:00 GMT (envelope-from gnats) Resent-Date: Sat, 8 Mar 2014 17:30:00 GMT Resent-Message-Id: <201403081730.s28HU0pi016703@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ia64@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Karl Denninger 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 25E8197F for ; Sat, 8 Mar 2014 17:24:55 +0000 (UTC) Received: from fs.denninger.net (wsip-70-169-168-7.pn.at.cox.net [70.169.168.7]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id D130F7E8 for ; Sat, 8 Mar 2014 17:24:54 +0000 (UTC) Received: from fs.denninger.net (localhost [127.0.0.1]) by fs.denninger.net (8.14.7/8.13.1) with ESMTP id s28HOhDQ075319 for ; Sat, 8 Mar 2014 11:24:43 -0600 (CST) (envelope-from karl@fs.denninger.net) Received: from fs.denninger.net (TLS/SSL) [127.0.0.1] by Spamblock-sys (LOCAL/AUTH); Sat Mar 8 11:24:43 2014 Received: (from karl@localhost) by fs.denninger.net (8.14.7/8.13.1/Submit) id s28HOcrv075316; Sat, 8 Mar 2014 11:24:38 -0600 (CST) (envelope-from karl) Message-Id: <201403081724.s28HOcrv075316@fs.denninger.net> Date: Sat, 8 Mar 2014 11:24:38 -0600 (CST) From: Karl Denninger To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.114 Subject: ia64/187379: Attempting to buildworld to 10-STABLE from 9.2-STABLE blows X-BeenThere: freebsd-ia64@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: Karl Denninger List-Id: Porting FreeBSD to the IA-64 List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 08 Mar 2014 17:30:01 -0000 >Number: 187379 >Category: ia64 >Synopsis: Attempting to buildworld to 10-STABLE from 9.2-STABLE blows >Confidential: no >Severity: serious >Priority: high >Responsible: freebsd-ia64 >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sat Mar 08 17:30:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Karl Denninger >Release: FreeBSD 9.2-STABLE amd64 >Organization: Karls Sushi and Packet Smashers >Environment: System: FreeBSD NewFS.denninger.net 9.2-STABLE FreeBSD 9.2-STABLE #8 r256048M: Fri Oct 4 08:35:51 CDT 2013 karl@NewFS.denninger.net:/usr/obj/usr/src/sys/KSD-SMP amd64 >Description: With "ORGANIZATION" defined (as above) in the environment build blows up in subversion. The offending file appears to be /usr/src/usr.bin/svn/svn/Makefile, which echoes the variable into an include file without quotes around the string literal; said define is then used in the source without being quoted. >How-To-Repeat: Define "ORGANIZATION" in your environment on a checked-out copy of 10-STABLE's source and type "make buildworld" >Fix: [root@NewFS /usr/src/usr.bin/svn/svn]# diff -c Makefile.orig Makefile *** Makefile.orig Sat Mar 8 10:04:11 2014 --- Makefile Sat Mar 8 10:41:08 2014 *************** *** 58,64 **** CLEANFILES+= freebsd-organization.h CFLAGS+= -I. -DHAS_ORGANIZATION_NAME freebsd-organization.h: ! @echo '#define ORGANIZATION_NAME ${ORGANIZATION}' \ > freebsd-organization.h .endif --- 58,64 ---- CLEANFILES+= freebsd-organization.h CFLAGS+= -I. -DHAS_ORGANIZATION_NAME freebsd-organization.h: ! @echo '#define ORGANIZATION_NAME "${ORGANIZATION}"' \ > freebsd-organization.h .endif >Release-Note: >Audit-Trail: >Unformatted: up in subversion