diff options
author | Sergei Zhmylev <s.zhmylev@yadro.com> | 2024-10-22 18:54:35 +0300 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2024-10-22 21:03:03 -0700 |
commit | 753e28c1a8098b18db2ceca87cd0bd54e4e7df2d (patch) | |
tree | 4d0369349bf6c05b37af3957b396cf3aed35c561 | |
parent | 9ec451426752e3ec29649612470949594796dd11 (diff) | |
download | meta-openembedded-753e28c1a8098b18db2ceca87cd0bd54e4e7df2d.tar.gz |
multipath-tools: set etc_prefix to sysconfdir
Makefile of multipath-tools uses $prefix as a destination prefix.
As soon as we added usrmerge feature, multipath default configuration
placed under /usr/etc/ resulting into problems locating them via a
hard-coded path inside the tools.
This change explicitly sets etc_prefix to ${sysconfdir} in order to
recover default behaviour.
Signed-off-by: Sergei Zhmylev <s.zhmylev@yadro.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
-rw-r--r-- | meta-oe/recipes-support/multipath-tools/multipath-tools_0.10.0.bb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/meta-oe/recipes-support/multipath-tools/multipath-tools_0.10.0.bb b/meta-oe/recipes-support/multipath-tools/multipath-tools_0.10.0.bb index a09fbb2216..18874e909e 100644 --- a/meta-oe/recipes-support/multipath-tools/multipath-tools_0.10.0.bb +++ b/meta-oe/recipes-support/multipath-tools/multipath-tools_0.10.0.bb | |||
@@ -72,6 +72,7 @@ ARM_INSTRUCTION_SET:armv5 = "arm" | |||
72 | EXTRA_OEMAKE = 'MULTIPATH_VERSION=${PV} DESTDIR=${D} syslibdir=${base_libdir} \ | 72 | EXTRA_OEMAKE = 'MULTIPATH_VERSION=${PV} DESTDIR=${D} syslibdir=${base_libdir} \ |
73 | OPTFLAGS="${CFLAGS}" \ | 73 | OPTFLAGS="${CFLAGS}" \ |
74 | prefix=${prefix} \ | 74 | prefix=${prefix} \ |
75 | etc_prefix=${sysconfdir} \ | ||
75 | bindir=${base_sbindir} \ | 76 | bindir=${base_sbindir} \ |
76 | LIB=${base_libdir} libdir=${base_libdir}/multipath \ | 77 | LIB=${base_libdir} libdir=${base_libdir}/multipath \ |
77 | usrlibdir=${libdir} \ | 78 | usrlibdir=${libdir} \ |