From 690b12f0005b66786a62f867daccb210e2390d2b Mon Sep 17 00:00:00 2001 From: wdlkmpx Date: Thu, 8 Jun 2023 05:24:43 -0500 Subject: util/meson.build: don't install udev.rules if udevdir cannot be determined (#801) make the udev dependency optional just show a big warning if `udevrulesdir` is empty --- util/install_helper.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'util/install_helper.sh') diff --git a/util/install_helper.sh b/util/install_helper.sh index 33f4a42..76f2b47 100755 --- a/util/install_helper.sh +++ b/util/install_helper.sh @@ -37,8 +37,10 @@ if $useroot; then fi fi -install -D -m 644 "${MESON_SOURCE_ROOT}/util/udev.rules" \ +if [ "${udevrulesdir}" != "" ]; then + install -D -m 644 "${MESON_SOURCE_ROOT}/util/udev.rules" \ "${DESTDIR}${udevrulesdir}/99-fuse3.rules" +fi if [ "$initscriptdir" != "" ]; then install -D -m 755 "${MESON_SOURCE_ROOT}/util/init_script" \ -- cgit v1.2.3