From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from list by lists.gnu.org with archive (Exim 4.71) id 1Wftfs-0007xV-82 for mharc-grub-devel@gnu.org; Thu, 01 May 2014 12:17:28 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:42386) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Wftfg-0007w6-ND for grub-devel@gnu.org; Thu, 01 May 2014 12:17:25 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WftfX-00025n-N7 for grub-devel@gnu.org; Thu, 01 May 2014 12:17:16 -0400 Received: from mail-lb0-x22b.google.com ([2a00:1450:4010:c04::22b]:52771) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WftfX-00025g-F0 for grub-devel@gnu.org; Thu, 01 May 2014 12:17:07 -0400 Received: by mail-lb0-f171.google.com with SMTP id u14so2326992lbd.30 for ; Thu, 01 May 2014 09:17:05 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:subject:date:message-id; bh=Mg0T06/re7iOp/y58ARjrJtPAApeiyNBkCxl3QUf1Ik=; b=JV7ie3p0UhsFhIjXg1OxrN26hPNHe6kRD1NVdVrdrj41A3F5SXBtMFDuaQwYYA2ad9 /fVO6jfCInG52UOy8RJWK+N6LLbM6XFNvhxVrlwO6y86m1qIXaQsvckrG0T/x8wET8sZ ot5hDR689ocdoB0mSf4PR4XFIJOWTU2VP3OvOzyYL6g8+SC3x3LJMw0QrM6dZnGGO01j ApstvJ2wXQIcbFAKdAVonb9SMHTJG2z2onYScZqcTdJyb75E9IZDr6YCy1P5YstH1j9U upuccSeq2wz2sOxgcqy6RevmUntSuqAuCNSVpOeTeUp50mTG8p+RucFdgH9j3pyz9Zex VrGQ== X-Received: by 10.152.9.8 with SMTP id v8mr2306412laa.36.1398961025399; Thu, 01 May 2014 09:17:05 -0700 (PDT) Received: from localhost.localdomain (ppp37-190-15-130.pppoe.spdop.ru. [37.190.15.130]) by mx.google.com with ESMTPSA id kk4sm30343953lbb.22.2014.05.01.09.17.04 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Thu, 01 May 2014 09:17:04 -0700 (PDT) From: Andrey Borzenkov To: grub-devel@gnu.org Subject: [PATCH] grub-mkrescue: remove temporary load_cfg file Date: Thu, 1 May 2014 20:16:59 +0400 Message-Id: <1398961019-29913-1-git-send-email-arvidjaar@gmail.com> X-Mailer: git-send-email 1.8.4.5 X-detected-operating-system: by eggs.gnu.org: Error: Malformed IPv6 address (bad octet value). X-Received-From: 2a00:1450:4010:c04::22b 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: Thu, 01 May 2014 16:17:26 -0000 --- util/grub-mkrescue.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/util/grub-mkrescue.c b/util/grub-mkrescue.c index e719839..c3d9b32 100644 --- a/util/grub-mkrescue.c +++ b/util/grub-mkrescue.c @@ -323,6 +323,7 @@ make_image_fwdisk_abs (enum grub_install_plat plat, grub_install_make_image_wrap (source_dirs[plat], "()/boot/grub", output, 0, load_cfg, mkimage_target, 0); grub_install_pop_module (); + grub_util_unlink (load_cfg); } static int @@ -566,6 +567,7 @@ main (int argc, char *argv[]) } grub_install_pop_module (); grub_install_pop_module (); + grub_util_unlink (load_cfg); } /** build multiboot core.img */ -- tg: (4b8b913..) u/load_cfg (depends on: master)