If --sbindir, et. al are specified to configure set $root_sbindir, et al.

If the user specifies as arguments to configure --bindir, --sbindir,
--libdir, or --sysconfdir, then set corresponding $root_FOO variable,
so that the request from the user to set a specific --sbindir is
honored.

Addresses-Sourceforge-Bug: 498381

Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
bitmap-optimize
Theodore Ts'o 2008-01-04 16:55:37 -05:00
parent 1725c0cf53
commit c4ef11c507
2 changed files with 32 additions and 0 deletions

16
configure vendored
View File

@ -15191,6 +15191,22 @@ else
root_libdir='${root_prefix}/lib'
root_sysconfdir='${root_prefix}/etc'
fi
if test "$bindir" != '${exec_prefix}/bin'; then
root_bindir=$bindir
echo "Setting root_bindir to $root_bindir"
fi
if test "$sbindir" != '${exec_prefix}/sbin'; then
root_sbindir=$sbindir
echo "Setting root_sbindir to $root_sbindir"
fi
if test "$libdir" != '${exec_prefix}/lib'; then
root_libdir=$libdir
echo "Setting root_libdir to $root_libdir"
fi
if test "$sysconfdir" != '${prefix}/etc'; then
root_sysconfdir=$sysconfdir
echo "Setting root_sysconfdir to $root_sysconfdir"
fi

View File

@ -853,6 +853,22 @@ else
root_libdir='${root_prefix}/lib'
root_sysconfdir='${root_prefix}/etc'
fi
if test "$bindir" != '${exec_prefix}/bin'; then
root_bindir=$bindir
echo "Setting root_bindir to $root_bindir"
fi
if test "$sbindir" != '${exec_prefix}/sbin'; then
root_sbindir=$sbindir
echo "Setting root_sbindir to $root_sbindir"
fi
if test "$libdir" != '${exec_prefix}/lib'; then
root_libdir=$libdir
echo "Setting root_libdir to $root_libdir"
fi
if test "$sysconfdir" != '${prefix}/etc'; then
root_sysconfdir=$sysconfdir
echo "Setting root_sysconfdir to $root_sysconfdir"
fi
AC_SUBST(root_prefix)
AC_SUBST(root_bindir)
AC_SUBST(root_sbindir)