]> git.ipfire.org Git - thirdparty/kmod.git/commitdiff
build-sys: rename autogen.sh to bootstrap and keep a symlink
authorLucas De Marchi <lucas.demarchi@profusion.mobi>
Thu, 12 Jan 2012 20:23:32 +0000 (18:23 -0200)
committerLucas De Marchi <lucas.demarchi@profusion.mobi>
Thu, 12 Jan 2012 20:23:32 +0000 (18:23 -0200)
autogen.sh [changed from file to symlink]
bootstrap [new file with mode: 0755]

deleted file mode 100755 (executable)
index 6c73d4e2593e1e5eff50bbfb60caf188e1a3a4af..0000000000000000000000000000000000000000
+++ /dev/null
@@ -1,29 +0,0 @@
-#!/bin/sh -e
-
-gtkdocize --docdir libkmod/docs || touch libkmod/docs/gtk-doc.make
-autoreconf --install --symlink
-
-libdir() {
-       echo $(cd $1/$(gcc -print-multi-os-directory); pwd)
-}
-
-args="--prefix=/usr \
---sysconfdir=/etc \
---libdir=$(libdir /usr/lib)"
-
-hackargs="--enable-debug --with-xz --with-zlib"
-
-cat <<EOC
-
-----------------------------------------------------------------
-Initialized build system. For a common configuration please run:
-----------------------------------------------------------------
-
-./configure CFLAGS='-g -O2' $args
-
-If you are debugging or hacking on kmod, consider configuring
-like below:
-
-./configure CFLAGS="-g -O2 -Werror" $args $hackargs
-
-EOC
new file mode 120000 (symlink)
index 0000000000000000000000000000000000000000..ac7bcbbf37b1b7f6e3ac6402a29f844f6de1ca43
--- /dev/null
@@ -0,0 +1 @@
+bootstrap
\ No newline at end of file
diff --git a/bootstrap b/bootstrap
new file mode 100755 (executable)
index 0000000..6c73d4e
--- /dev/null
+++ b/bootstrap
@@ -0,0 +1,29 @@
+#!/bin/sh -e
+
+gtkdocize --docdir libkmod/docs || touch libkmod/docs/gtk-doc.make
+autoreconf --install --symlink
+
+libdir() {
+       echo $(cd $1/$(gcc -print-multi-os-directory); pwd)
+}
+
+args="--prefix=/usr \
+--sysconfdir=/etc \
+--libdir=$(libdir /usr/lib)"
+
+hackargs="--enable-debug --with-xz --with-zlib"
+
+cat <<EOC
+
+----------------------------------------------------------------
+Initialized build system. For a common configuration please run:
+----------------------------------------------------------------
+
+./configure CFLAGS='-g -O2' $args
+
+If you are debugging or hacking on kmod, consider configuring
+like below:
+
+./configure CFLAGS="-g -O2 -Werror" $args $hackargs
+
+EOC