Take the requisite autotools commands from the README and put them in autogen.sh. This just makes it more convenient to build from GIT, especially when configure.ac or Makefile.am are changed.
Signed-off-by: Alan Jenkins <[email protected]> diff --git a/README b/README index ef0b7ad..17c5cdf 100644 --- a/README +++ b/README @@ -33,7 +33,7 @@ OR, depmod 2.5.50 6) If you want to hack on the source: - aclocal && automake --add-missing --copy && autoconf + ./autogen.sh If this is all too complicated, I recommend getting and installing the source rpm or debian package instead. diff --git a/autogen.sh b/autogen.sh new file mode 100755 index 0000000..ec043cc --- /dev/null +++ b/autogen.sh @@ -0,0 +1,3 @@ +#! /bin/sh + +aclocal && automake --add-missing --copy && autoconf -- To unsubscribe from this list: send the line "unsubscribe linux-modules" in the body of a message to [email protected] More majordomo info at http://vger.kernel.org/majordomo-info.html
