aboutsummaryrefslogtreecommitdiffstats
path: root/meta/recipes-core/util-linux/util-linux/fix-configure.patch
blob: 0ea23183ca3ef3cea91ec2e6bfc700d9897e00d4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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 ;;