From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1750768AbWGXIiL (ORCPT ); Mon, 24 Jul 2006 04:38:11 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1750800AbWGXIiL (ORCPT ); Mon, 24 Jul 2006 04:38:11 -0400 Received: from ns2.suse.de ([195.135.220.15]:18345 "EHLO mx2.suse.de") by vger.kernel.org with ESMTP id S1750768AbWGXIiL (ORCPT ); Mon, 24 Jul 2006 04:38:11 -0400 Date: Mon, 24 Jul 2006 10:38:07 +0200 From: Olaf Hering To: Sam Ravnborg , linux-kernel@vger.kernel.org Subject: [PATCH] remove RPM_BUILD_ROOT from asm-offsets.h Message-ID: <20060724083806.GA556@suse.de> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline X-DOS: I got your 640K Real Mode Right Here Buddy! X-Homeland-Security: You are not supposed to read this line! You are a terrorist! User-Agent: Mutt und vi sind doch schneller als Notes (und GroupWise) Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org No file in rpm binary package should have the RPM_BUILD_ROOT string in it. To simplify building of external modules, our kernel-source package contains some temp files from the Kbuild system. asm/asm-offsets.h is one of the files that contains the absolute path if make O=$O is used. * This file was generated by /var/tmp/kernel-source-2.6.14_rc4-build/usr/src/linux-2.6.14-rc4-2/Kbuild Remove the $RPM_BUILD_ROOT string in the shipped tempfile. Signed-off-by: Olaf Hering --- Kbuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Index: linux-2.6.18-rc2/Kbuild =================================================================== --- linux-2.6.18-rc2.orig/Kbuild +++ linux-2.6.18-rc2/Kbuild @@ -28,7 +28,7 @@ define cmd_offsets echo "/*"; \ echo " * DO NOT MODIFY."; \ echo " *"; \ - echo " * This file was generated by $(srctree)/Kbuild"; \ + echo " * This file was generated by Kbuild"; \ echo " *"; \ echo " */"; \ echo ""; \