From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with archive (Exim 4.43) id 1KZCr4-0006AM-Cy for mharc-grub-devel@gnu.org; Fri, 29 Aug 2008 18:54:10 -0400 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1KZCr3-00069s-3E for grub-devel@gnu.org; Fri, 29 Aug 2008 18:54:09 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1KZCr1-00069Q-IK for grub-devel@gnu.org; Fri, 29 Aug 2008 18:54:08 -0400 Received: from [199.232.76.173] (port=49857 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1KZCr1-00069L-Bq for grub-devel@gnu.org; Fri, 29 Aug 2008 18:54:07 -0400 Received: from moutng.kundenserver.de ([212.227.126.187]:52228) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1KZCr0-0007Be-Mt for grub-devel@gnu.org; Fri, 29 Aug 2008 18:54:07 -0400 Received: from [85.180.15.105] (e180015105.adsl.alicedsl.de [85.180.15.105]) by mrelayeu.kundenserver.de (node=mrelayeu6) with ESMTP (Nemesis) id 0ML29c-1KZCqz2hZA-0001hc; Sat, 30 Aug 2008 00:54:06 +0200 From: Felix Zielcke To: The development of GRUB 2 In-Reply-To: <1219410801.4450.56.camel@fz.local> References: <1219403324.4450.37.camel@fz.local> <20080822125823.GC20330@thorin> <1219410801.4450.56.camel@fz.local> Content-Type: multipart/mixed; boundary="=-M0VekoDBM5t5dJ9dT+W+" Date: Sat, 30 Aug 2008 00:54:04 +0200 Message-Id: <1220050444.11557.11.camel@fz.local> Mime-Version: 1.0 X-Mailer: Evolution 2.22.3.1 X-Provags-ID: V01U2FsdGVkX18V2/BpavthAK2YmWOHe4bDoCdWcbfGszXJ3iU dVEtTsYxBJzWtFjsV+tYCDc9vqajnA4lze/Aha/H6NJYPjNW2H zJD91ESruR6qO0nDdQJA3R42P/Gav2N X-detected-kernel: by monty-python.gnu.org: Linux 2.6? (barebone, rare!) Subject: Re: [RFC] DISTLIST and gendistlist.sh 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: Fri, 29 Aug 2008 22:54:09 -0000 --=-M0VekoDBM5t5dJ9dT+W+ Content-Type: text/plain Content-Transfer-Encoding: 7bit Am Freitag, den 22.08.2008, 15:13 +0200 schrieb Felix Zielcke: > I don't have almost no opion at all how this should be changed. > For me, the first solution to this problem that appears is just removing > DISTLIST but that doestn't mean of course that it's the best :) I tend now more to Robert's suggestion, so here's a little patch for autogen.sh I think the DISTLIST file could a bit helpful to remind that ./gendistlist.sh might sometimes needs an update. -- Felix Zielcke --=-M0VekoDBM5t5dJ9dT+W+ Content-Disposition: attachment; filename=distlist.diff Content-Type: text/x-patch; name=distlist.diff; charset=UTF-8 Content-Transfer-Encoding: 7bit 2008-08-22 Felix Zielcke * autogen.sh: Call `gendistlist.sh' to regenerate `DISTLIST'. Index: autogen.sh =================================================================== --- autogen.sh (Revision 1836) +++ autogen.sh (Arbeitskopie) @@ -8,5 +8,6 @@ echo timestamp > stamp-h.in for rmk in conf/*.rmk; do ruby genmk.rb < $rmk > `echo $rmk | sed 's/\.rmk$/.mk/'` done +./gendistlist.sh > DISTLIST exit 0 --=-M0VekoDBM5t5dJ9dT+W+--