From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S266560AbUBLTeU (ORCPT ); Thu, 12 Feb 2004 14:34:20 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S266564AbUBLTeU (ORCPT ); Thu, 12 Feb 2004 14:34:20 -0500 Received: from c-67-169-7-208.client.comcast.net ([67.169.7.208]:56962 "EHLO beeble.homelinux.net") by vger.kernel.org with ESMTP id S266560AbUBLTd3 (ORCPT ); Thu, 12 Feb 2004 14:33:29 -0500 Message-ID: <402BD507.2040201@lbl.gov> Date: Thu, 12 Feb 2004 11:33:27 -0800 From: Thomas Davis User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.6) Gecko/20040113 X-Accept-Language: en-us, en MIME-Version: 1.0 To: lkml Subject: [PATCH] Fix make rpm in 2.6 when using RH9 or Fedora.. Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org Doing a 'make rpm' with any linux-2.6 (or probably, even linux-2.4 kernel) will fail with the current RH/Fedora RPM macros. The failure message is this: Processing files: kernel-debuginfo-2.6.3rc1mm1-12 error: Could not open %files file /usr/src/redhat/BUILD/kernel-2.6.3rc1mm1/debugfiles.list: No such file or directory RPM build errors: Could not open %files file /usr/src/redhat/BUILD/kernel-2.6.3rc1mm1/debugfiles.list: No such file or directory make: *** [rpm] Error 1 The fix is this patch: --- linux-2.6/scripts/mkspec 2004-01-08 22:59:04.000000000 -0800 +++ linux-2.6.3-rc1-mm1/scripts/mkspec 2004-02-12 00:02:55.000000000 -0800 @@ -37,6 +37,7 @@ echo "BuildRoot: /var/tmp/%{name}-%{PACKAGE_VERSION}-root" echo "Provides: $PROVIDES" echo "%define __spec_install_post /usr/lib/rpm/brp-compress || :" +echo "%define debug_package %{nil}" echo "" echo "%description" echo "The Linux Kernel, the operating system core itself"