diff options
author | Thomas Deutschmann <whissi@gentoo.org> | 2020-07-23 22:25:44 +0200 |
---|---|---|
committer | Thomas Deutschmann <whissi@gentoo.org> | 2020-07-24 00:56:47 +0200 |
commit | c792697d0ec5e54ee9fcf1536f04f2267dff699d (patch) | |
tree | 9ed359203e242165493b4ce9b7c85d16befd4fa7 /worker_modules | |
parent | genkernel: bump to v4.1.0_beta1 (diff) | |
download | genkernel-c792697d0ec5e54ee9fcf1536f04f2267dff699d.tar.gz genkernel-c792697d0ec5e54ee9fcf1536f04f2267dff699d.tar.bz2 genkernel-c792697d0ec5e54ee9fcf1536f04f2267dff699d.zip |
Switch from MDEV to UDEV
We need to switch from using MDEV to UDEV to avoid boot problems
due to timeouts caused by some UDEV rules from real system when
real system is using systemd.
Bug: https://bugs.gentoo.org/706434
Signed-off-by: Thomas Deutschmann <whissi@gentoo.org>
Diffstat (limited to 'worker_modules')
-rw-r--r-- | worker_modules/gkbuild.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/worker_modules/gkbuild.sh b/worker_modules/gkbuild.sh index 668bb8f0..7284d842 100644 --- a/worker_modules/gkbuild.sh +++ b/worker_modules/gkbuild.sh @@ -365,7 +365,7 @@ _initialize() { # https://git.dereferenced.org/pkgconf/pkgconf/issues/30 unset PKG_CONFIG_PATH PKG_CONFIG_DIR LIBRARY_PATH - export PKG_CONFIG_LIBDIR=\${SYSROOT}/usr/lib/pkgconfig + export PKG_CONFIG_LIBDIR=\${SYSROOT}/usr/lib/pkgconfig:\${SYSROOT}/usr/share/pkgconfig export PKG_CONFIG_SYSROOT_DIR=\${SYSROOT} exec pkg-config "\$@" |