From 5674c41b3ea4eac8fe8f4f74bd978699bc847332 Mon Sep 17 00:00:00 2001 From: "Anand V. Avati" Date: Tue, 27 Oct 2009 05:52:16 -0700 Subject: extras/init.d: make install directory configurable with --with-initdir --- configure.ac | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'configure.ac') diff --git a/configure.ac b/configure.ac index 7243735caeb..9f1e20831da 100644 --- a/configure.ac +++ b/configure.ac @@ -141,6 +141,12 @@ AC_ARG_WITH(mountutildir, [mountutildir='/sbin']) AC_SUBST(mountutildir) +AC_ARG_WITH(initdir, + [ --with-initdir=DIR init.d scripts in DIR @<:@/etc/init.d@:>@], + [initdir=$withval], + [initdir='/etc/init.d']) +AC_SUBST(initdir) + # LEX needs a check AC_PROG_LEX if test "x${LEX}" != "xflex" -a "x${FLEX}" != "xlex"; then -- cgit