mirror of
https://git.yoctoproject.org/poky
synced 2026-05-18 05:28:00 +02: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>
21 lines
630 B
Diff
21 lines
630 B
Diff
The userlib_execdir was not getting set correctly, the quoting
|
|
was wrong as these quoted items were not getting expanded correctly.
|
|
|
|
Upstream-Status: Pending
|
|
|
|
Signed-off-by: Saul Wold <sgw@linux.intel.com>
|
|
|
|
Index: util-linux-2.22.1/configure.ac
|
|
===================================================================
|
|
--- util-linux-2.22.1.orig/configure.ac
|
|
+++ util-linux-2.22.1/configure.ac
|
|
@@ -79,7 +79,7 @@ fi
|
|
AC_SUBST([usrsbin_execdir])
|
|
|
|
case $libdir in
|
|
- '${exec_prefix}/'* | '${prefix}/'* | /usr/*)
|
|
+ ${exec_prefix}/* | ${prefix}/* | /usr/*)
|
|
usrlib_execdir=$libdir ;;
|
|
*)
|
|
usrlib_execdir='${exec_prefix}'$libdir ;;
|