From a4e2d10e1441d5d2fcf2bcd9326d65358b2d804c Mon Sep 17 00:00:00 2001 From: Steven Seungcheol Lee Date: Fri, 4 Feb 2022 16:13:04 +0900 Subject: [PATCH] meson: fix default dracut directory based on dracut manual Signed-off-by: Steven Seungcheol Lee --- Makefile | 1 - meson_options.txt | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/Makefile b/Makefile index d52c5e26..8c4cb744 100644 --- a/Makefile +++ b/Makefile @@ -42,7 +42,6 @@ test: ${BUILD-DIR} rpm: meson ${BUILD-DIR} \ -Dudevrulesdir=$(shell rpm --eval '%{_udevrulesdir}') \ - -Ddracutrulesdir=lib/dracut/dracut.conf.d \ -Dsystemddir=$(shell rpm --eval '%{_unitdir}') \ -Ddocs=man rpmbuild -ba ${BUILD-DIR}/nvme.spec --define "_builddir ${BUILD-DIR}" -v diff --git a/meson_options.txt b/meson_options.txt index 6fdc6817..8ff0c288 100644 --- a/meson_options.txt +++ b/meson_options.txt @@ -1,5 +1,5 @@ option('udevrulesdir', type : 'string', value : 'etc/udev/rules.d', description : 'directory for udev rules files') -option('dracutrulesdir', type : 'string', value : 'lib/dracut/', description : 'directory for dracut rules files') +option('dracutrulesdir', type : 'string', value : 'lib/dracut/dracut.conf.d/', description : 'directory for dracut rules files') option('systemddir', type : 'string', value : 'lib/systemd/', description : 'directory for systemd files') option('htmldir', type : 'string', value : '', description : 'directory for HTML documentation') -- 2.50.1