From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from list by lists.gnu.org with archive (Exim 4.71) id 1Uo5jx-0002NT-Ft for mharc-grub-devel@gnu.org; Sun, 16 Jun 2013 01:43:01 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:47613) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Uo5js-0002Ju-I4 for grub-devel@gnu.org; Sun, 16 Jun 2013 01:42:57 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Uo5jp-0003re-Vj for grub-devel@gnu.org; Sun, 16 Jun 2013 01:42:56 -0400 Received: from mail-lb0-f172.google.com ([209.85.217.172]:43605) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Uo5jp-0003r5-OW for grub-devel@gnu.org; Sun, 16 Jun 2013 01:42:53 -0400 Received: by mail-lb0-f172.google.com with SMTP id v20so1643271lbc.31 for ; Sat, 15 Jun 2013 22:42:52 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:subject:date:message-id:x-mailer; bh=bmBFee9z7ORh0orZEIu1QhwDksNI3sjJUsKMJioU8yg=; b=DIFX70u90HxbwcCbdB2yEtquAmzNTaT6+kZQZilsth2k8adskkyACkK8psdBBTGARM xoo1YeVPI8xD/T5KwnFnd5m15s78JadAXIlQUNH7VeRgbRdHoOfTSsrI6pnK24EaoLPa tbsybQkB/R/e8I7OIjexrxaoC5neFwwNrPInnRy5lkkuBCcc7kiEFLVNqdDPLXWsftKd /RWvWSeAhSSERnldlet/agMuB7FtvUoniVcEqig5yflTgAPaCyWs193GTuOsMARdl7HG 7ABXVOCZA2UhUw5zUxr5UF88dP2sG8VqCdtjqdqezjNg7O44fpGUglZ36d8DOMxH538V pW+Q== X-Received: by 10.112.169.5 with SMTP id aa5mr3966616lbc.71.1371361372464; Sat, 15 Jun 2013 22:42:52 -0700 (PDT) Received: from localhost.localdomain (ppp79-139-160-84.pppoe.spdop.ru. [79.139.160.84]) by mx.google.com with ESMTPSA id et10sm3261356lbc.6.2013.06.15.22.42.51 for (version=TLSv1.2 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Sat, 15 Jun 2013 22:42:52 -0700 (PDT) From: Andrey Borzenkov To: grub-devel@gnu.org Subject: [PATCH] fix missing cpio_common.c in tardist Date: Sun, 16 Jun 2013 09:42:49 +0400 Message-Id: <1371361369-23801-1-git-send-email-arvidjaar@gmail.com> X-Mailer: git-send-email 1.8.1.4 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] [fuzzy] X-Received-From: 209.85.217.172 X-BeenThere: grub-devel@gnu.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: The development of GNU GRUB List-Id: The development of GNU GRUB List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 16 Jun 2013 05:42:57 -0000 [ 112s] ../grub-core/fs/cpio.c:51:25: fatal error: cpio_common.c: No such file or directory [ 112s] compilation terminated. As it is used by multiple modules, add it as global EXTRA_DIST. Signed-off-by: Andrey Borzenkov --- ChangeLog | 4 ++++ conf/Makefile.extra-dist | 2 ++ 2 files changed, 6 insertions(+) diff --git a/ChangeLog b/ChangeLog index e71a848..979bc53 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2013-06-16 Andrey Borzenkov + + * conf/Makefile.extra-dist: Add grub-core/fs/cpio_common.c. + 2013-06-16 Vladimir Serbinenko Fix casts when compiling coreboot-specific code for 64-bit EFI. diff --git a/conf/Makefile.extra-dist b/conf/Makefile.extra-dist index dc788a1..a76083b 100644 --- a/conf/Makefile.extra-dist +++ b/conf/Makefile.extra-dist @@ -35,6 +35,8 @@ EXTRA_DIST += grub-core/efiemu/runtime/config.h EXTRA_DIST += grub-core/lib/LzmaDec.c +EXTRA_DIST += grub-core/fs/cpio_common.c + EXTRA_DIST += BUGS EXTRA_DIST += util/i386/efi/grub-dumpdevtree EXTRA_DIST += util/spkmodem-recv.c -- tg: (0ed37fc..) u/cpio_common (depends on: master)