1util-linux: take ${sbindir} from the environment if it is set there 2fix the test, the [ ] syntax was getting eaten by autoconf 3 4Signed-off-by: Phil Blundell <pb@pbcl.net> 5Signed-off-by: Saul Wold <sgw@linux.intel.com 6Upstream-Status: Inappropriate [configuration] 7 8Index: util-linux-2.31/configure.ac 9=================================================================== 10--- util-linux-2.31.orig/configure.ac 11+++ util-linux-2.31/configure.ac 12@@ -89,7 +89,10 @@ AC_SUBST([runstatedir]) 13 usrbin_execdir='${exec_prefix}/bin' 14 AC_SUBST([usrbin_execdir]) 15 16-usrsbin_execdir='${exec_prefix}/sbin' 17+if test -z "$usrsbin_execdir" ; 18+then 19+ usrsbin_execdir='${exec_prefix}/sbin' 20+fi 21 AC_SUBST([usrsbin_execdir]) 22 23 AS_CASE([$libdir], 24