From 4452340c527276547f14c7a92dbf41c1f71203ed Mon Sep 17 00:00:00 2001 From: Phillip Berndt Date: Tue, 31 Dec 2019 11:43:50 +0100 Subject: [PATCH] Fix two minor issues with the Makefile --- Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index a4a70e4..0ff382f 100644 --- a/Makefile +++ b/Makefile @@ -31,6 +31,7 @@ all: @echo "The following additional targets are available:" @echo @echo " make deb creates a Debian package" + @echo " make rpm creates a RPM package" # Rules for autorandr itself DEFAULT_TARGETS=autorandr @@ -110,7 +111,7 @@ uninstall_pmutils: # Rules for udev UDEV_RULES_DIR:=$(shell pkg-config --variable=udevdir udev 2>/dev/null)/rules.d -ifneq (,$(UDEV_RULES_DIR),y) +ifneq (/rules.d,$(UDEV_RULES_DIR)) DEFAULT_TARGETS+=udev endif