I think that autogen.sh is a fiamilar to many develipers
as a way way to bootstrap source trees. So this might make
bootstraping the kexec-tools tree easier for some.
    
Signed-Off-By: Simon Horman <[EMAIL PROTECTED]>

diff --git a/autogen.sh b/autogen.sh
new file mode 100755
index 0000000..09fdbce
--- /dev/null
+++ b/autogen.sh
@@ -0,0 +1,16 @@
+#!/bin/sh
+# Boostrap the build environment
+
+set -e
+
+(autoconf --version) < /dev/null > /dev/null 2>&1 || {
+       echo
+       echo "You must have autoconf installed to bootstrap kexec-tools."
+       echo "Download the appropriate package for your distribution,"
+       echo "or get the source tarball at ftp://ftp.gnu.org/pub/gnu/";
+       exit 1
+}
+
+autoconf 
+
+exec ./configure "$@"

--

-- 
Horms
  H: http://www.vergenet.net/~horms/
  W: http://www.valinux.co.jp/en/

_______________________________________________
fastboot mailing list
[email protected]
https://lists.osdl.org/mailman/listinfo/fastboot

Reply via email to