From owner-svn-src-all@FreeBSD.ORG Tue Jun 10 13:57:21 2014 Return-Path: Delivered-To: svn-src-all@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 7A6E3E35; Tue, 10 Jun 2014 13:57:21 +0000 (UTC) Received: from mail-ob0-x236.google.com (mail-ob0-x236.google.com [IPv6:2607:f8b0:4003:c01::236]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 1F0CA28BC; Tue, 10 Jun 2014 13:57:21 +0000 (UTC) Received: by mail-ob0-f182.google.com with SMTP id nu7so1507113obb.27 for ; Tue, 10 Jun 2014 06:57:20 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; bh=AIhsQA/hkQmKksMQF93iMPcU2z97nIHGv+QTwVnc3dI=; b=yHviQVs7CW6Z1WSsqQRDSy8/3F48mJiwY0b90zsg6nNbL/UwuZh8c1L9p4q9O3JhdQ 6Tsdxjm+5eWX72VgKcQwEqTohsI/r/OHd/j6KUdajEogxK0PwZeweYj3sYQpALpEgO76 gSijQIy1M3KH8wOF94Rk3zQ5RhB6DaZrTrTnLOmhXccfJNZyk7G69HSJgO6toyeDcVLN YSLWYUE0/gcY/tnQ9fWeI0/B/8/V/qAyOT8iLkS9/Q2lq2RInK6uI8kyHzvFUcf6C+Ku gErTjChM+O2e0xp1B15EDY8q7CVeyaVyvnZUuiff0r3WxajlGgunDhz3bxkJNR6nXBF9 oblQ== MIME-Version: 1.0 X-Received: by 10.60.74.67 with SMTP id r3mr33788081oev.9.1402408640400; Tue, 10 Jun 2014 06:57:20 -0700 (PDT) Received: by 10.182.142.34 with HTTP; Tue, 10 Jun 2014 06:57:20 -0700 (PDT) In-Reply-To: <201406100616.s5A6GY4Q093247@svn.freebsd.org> References: <201406100616.s5A6GY4Q093247@svn.freebsd.org> Date: Tue, 10 Jun 2014 09:57:20 -0400 Message-ID: Subject: Re: svn commit: r267318 - head/usr.bin/dtc From: Benjamin Kaduk To: Rui Paulo Content-Type: text/plain; charset=UTF-8 X-Content-Filtered-By: Mailman/MimeDel 2.1.18 Cc: "svn-src-head@freebsd.org" , "svn-src-all@freebsd.org" , "src-committers@freebsd.org" X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Jun 2014 13:57:21 -0000 On Tue, Jun 10, 2014 at 2:16 AM, Rui Paulo wrote: > Author: rpaulo > Date: Tue Jun 10 06:16:34 2014 > New Revision: 267318 > URL: http://svnweb.freebsd.org/changeset/base/267318 > > Log: > dtc: ignore lines starting with #. > > This is necessary because we use the C pre-processor to parse #include > lines > and cpp adds line markings that start with #. > [Obligatory note that cpp is tied to its C compiler and is only obligated to produce output acceptable to that C compiler; such output could be arbitrarily complex.] -Ben