From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with archive (Exim 4.43) id 1IjfKb-0003ne-8m for mharc-grub-devel@gnu.org; Sun, 21 Oct 2007 14:15:21 -0400 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1IjfKZ-0003l0-FD for grub-devel@gnu.org; Sun, 21 Oct 2007 14:15:19 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1IjfKX-0003i1-Lk for grub-devel@gnu.org; Sun, 21 Oct 2007 14:15:18 -0400 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1IjfKX-0003hl-95 for grub-devel@gnu.org; Sun, 21 Oct 2007 14:15:17 -0400 Received: from mx20.gnu.org ([199.232.41.8]) by monty-python.gnu.org with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1IjfF3-000169-U7 for grub-devel@gnu.org; Sun, 21 Oct 2007 14:09:38 -0400 Received: from mailout02.sul.t-online.de ([194.25.134.17] helo=mailout02.sul.t-online.com) by mx20.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1Ije7K-0004WX-TY for grub-devel@gnu.org; Sun, 21 Oct 2007 12:57:35 -0400 Received: from fwd34.aul.t-online.de by mailout02.sul.t-online.com with smtp id 1Ije6K-0004nQ-09; Sun, 21 Oct 2007 18:56:32 +0200 Received: from [10.3.2.2] (TE6lFkZlYhL27mg37mzAkpnNw7LAUQmMpCgUPlJAAQ-wwoUy1ZenYwMV+PX4Y+0Zqo@[217.235.225.14]) by fwd34.aul.t-online.de with esmtp id 1Ije69-0PryHA0; Sun, 21 Oct 2007 18:56:21 +0200 Message-ID: <471B84B5.2030702@t-online.de> Date: Sun, 21 Oct 2007 18:56:21 +0200 From: Christian Franke User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.6) Gecko/20070802 SeaMonkey/1.1.4 MIME-Version: 1.0 To: grub-devel@gnu.org Content-Type: multipart/mixed; boundary="------------010703000007080500050600" X-ID: TE6lFkZlYhL27mg37mzAkpnNw7LAUQmMpCgUPlJAAQ-wwoUy1ZenYwMV+PX4Y+0Zqo X-TOI-MSGID: 110d53f5-ce22-4db6-8763-b0dce922d7b5 X-detected-kernel: by mx20.gnu.org: Linux 2.6 (newer, 3) X-detected-kernel: by monty-python.gnu.org: Linux 2.6, seldom 2.4 (older, 4) Subject: [PATCH] startup.S does not find includes X-BeenThere: grub-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: The development of GRUB 2 List-Id: The development of GRUB 2 List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 21 Oct 2007 18:15:19 -0000 This is a multi-part message in MIME format. --------------010703000007080500050600 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Hi, some recent checkin appearently introduces the following regression: Compilation fails if configure'd outside of $(srcdir). #include "kern/i386/realmode.S" and "kern/i386/loader.S" fail in startup.S. Patch is attached. Christian --------------010703000007080500050600 Content-Type: text/x-patch; name="grub2-Makefile.in.patch" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="grub2-Makefile.in.patch" --- grub2.orig/Makefile.in 2007-06-11 08:26:17.000000000 +0200 +++ grub2/Makefile.in 2007-10-21 18:43:11.421875000 +0200 @@ -64,7 +64,7 @@ CPPFLAGS = @CPPFLAGS@ -I. -Iinclude -I$( -DGRUB_LIBDIR=\"$(pkglibdir)\" TARGET_CC = @TARGET_CC@ TARGET_CFLAGS = @TARGET_CFLAGS@ -TARGET_CPPFLAGS = @TARGET_CPPFLAGS@ -I. -Iinclude -I$(srcdir)/include \ +TARGET_CPPFLAGS = @TARGET_CPPFLAGS@ -I. -Iinclude -I$(srcdir) -I$(srcdir)/include \ -Wall -W TARGET_LDFLAGS = @TARGET_LDFLAGS@ OBJCOPY = @OBJCOPY@ --------------010703000007080500050600--