From mboxrd@z Thu Jan 1 00:00:00 1970 Return-path: Received: from mail.suse.de ([195.135.220.2] helo=mx1.suse.de) by bombadil.infradead.org with esmtps (Exim 4.68 #1 (Red Hat Linux)) id 1JuCnX-000332-Gl for kexec@lists.infradead.org; Thu, 08 May 2008 20:33:04 +0000 Received: from Relay1.suse.de (mail2.suse.de [195.135.221.8]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.suse.de (Postfix) with ESMTP id 071FA418CC for ; Thu, 8 May 2008 22:33:01 +0200 (CEST) Date: Thu, 8 May 2008 22:33:41 +0200 Subject: [PATCH] Add bootstrap file Message-ID: <20080508203341.GA22153@suse.de> MIME-Version: 1.0 Content-Disposition: inline From: bwalle@suse.de (Bernhard Walle) List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Sender: kexec-bounces@lists.infradead.org Errors-To: kexec-bounces+dwmw2=infradead.org@lists.infradead.org To: kexec@lists.infradead.org This patch just adds a 'bootstrap' file. It's quite handy to have such a file in git because it contains all calls that are necessary to get the autogenerated files. Some projects call that file 'bootstrap', some other call it 'autogen.sh'. See also http://sourceware.org/autobook/autobook/autobook_43.html. Signed-off-by: Bernhard Walle --- bootstrap | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) --- /dev/null +++ b/bootstrap @@ -0,0 +1,29 @@ +#! /bin/sh +# bootstrap -- Use this script to create generated files from the CVS dist +# Copyright (C) 2000 Gary V. Vaughan +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2, or (at your option) +# any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + +## @start 1 +#! /bin/sh + +set -x +aclocal -I config +autoheader +automake --foreign --add-missing --copy +autoconf +libtoolize --copy + +## @end 1 _______________________________________________ kexec mailing list kexec@lists.infradead.org http://lists.infradead.org/mailman/listinfo/kexec