mirror of
https://git.yoctoproject.org/poky
synced 2026-02-21 17:09:42 +01:00
Fix the configure-sbindir test, which was not working correctly add a patch to configure to correctly test if the prefixes are conatined in libdir so they don't duplicate. Removed aarch64 patch since it been merged into this version Rebased util-linux-ng-replace-siginterrupt.patch (From OE-Core rev: ac807121ce3ba965f3e2a4f664a60ae4e33ce550) Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
24 lines
730 B
Diff
24 lines
730 B
Diff
util-linux: take ${sbindir} from the environment if it is set there
|
|
fix the test, the [ ] syntax was getting eaten by autoconf
|
|
|
|
Signed-off-by: Phil Blundell <pb@pbcl.net>
|
|
Signed-off-by: Saul Wold <sgw@linux.intel.com
|
|
Upstream-Status: Inappropriate [configuration]
|
|
|
|
Index: util-linux-2.22.1/configure.ac
|
|
===================================================================
|
|
--- util-linux-2.22.1.orig/configure.ac
|
|
+++ util-linux-2.22.1/configure.ac
|
|
@@ -73,7 +73,10 @@ AC_SUBST([localstatedir])
|
|
usrbin_execdir='${exec_prefix}/bin'
|
|
AC_SUBST([usrbin_execdir])
|
|
|
|
-usrsbin_execdir='${exec_prefix}/sbin'
|
|
+if test -z "$usrsbin_execdir" ;
|
|
+then
|
|
+ usrsbin_execdir='${exec_prefix}/sbin'
|
|
+fi
|
|
AC_SUBST([usrsbin_execdir])
|
|
|
|
case $libdir in
|