]> TLD Linux GIT Repositories - rc-scripts.git/blob - autogen.sh
- disable lock checks (happens on LUKS2 and fails during system boot)
[rc-scripts.git] / autogen.sh
1 #!/bin/sh
2 # Run this to generate all the initial makefiles, etc.
3
4 srcdir=$(dirname "$0")
5 test -z "$srcdir" && srcdir=.
6
7 PKG_NAME="TLD Linux rc-scripts"
8
9 autoreconf -vif "$srcdir"
10
11 conf_flags="" #--enable-maintainer-mode --enable-compile-warnings --enable-iso-c
12
13 if test x$NOCONFIGURE = x; then
14   echo Running $srcdir/configure $conf_flags "$@" ...
15   $srcdir/configure $conf_flags "$@" \
16   && echo Now type \`make\' to compile $PKG_NAME
17 else
18   echo Skipping configure process.
19 fi