From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S933511Ab2JDRhF (ORCPT ); Thu, 4 Oct 2012 13:37:05 -0400 Received: from mx1.redhat.com ([209.132.183.28]:40480 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S932253Ab2JDRhD (ORCPT ); Thu, 4 Oct 2012 13:37:03 -0400 Organization: Red Hat UK Ltd. Registered Address: Red Hat UK Ltd, Amberley Place, 107-111 Peascod Street, Windsor, Berkshire, SI4 1TE, United Kingdom. Registered in England and Wales under Company Registration No. 3798903 From: David Howells In-Reply-To: References: <18137.1349203013@warthog.procyon.org.uk> To: Geert Uytterhoeven Cc: dhowells@redhat.com, torvalds@osdl.org, arnd@arndb.de, hpa@zytor.com, alan@lxorguk.ukuu.org.uk, fengguang.wu@intel.com, linux-arch@vger.kernel.org, linux-kernel@vger.kernel.org Subject: Re: [GIT PULL] User API Disintegrate: Preparatory patches Date: Thu, 04 Oct 2012 18:36:46 +0100 Message-ID: <29855.1349372206@warthog.procyon.org.uk> Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Geert Uytterhoeven wrote: > > include/linux/libfdt.h | 4 +- > > So what happened here? > > -#include "../../scripts/dtc/libfdt/fdt.h" > -#include "../../scripts/dtc/libfdt/libfdt.h" > +#include <> > +#include <> I didn't expect 'system' header files to be outside of include/ or arch/*/include/, so the bit of perl I had to turn this into <...> quietly malfunctioned when it stripped too much off of the front. Out of interest, why aren't these in include/? The normal way seems to be to point the tool build at the kernel headers, not the kernel build at the script headers. David