From 69b6b2873f5d43e5d5858f3705951cb27789991f Mon Sep 17 00:00:00 2001 From: Muhammad Ahmad Date: Sat, 29 Feb 2020 09:16:44 -0600 Subject: [PATCH] Fixed where libsystem is needed, not just systemd --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index e63a9cb..5c5c8b2 100644 --- a/Makefile +++ b/Makefile @@ -3,7 +3,7 @@ override CFLAGS += -std=gnu99 -I. override CPPFLAGS += -D_GNU_SOURCE -D__CHECK_ENDIAN__ LIBUUID = $(shell $(LD) -o /dev/null -luuid >/dev/null 2>&1; echo $$?) LIBHUGETLBFS = $(shell $(LD) -o /dev/null -lhugetlbfs >/dev/null 2>&1; echo $$?) -HAVE_SYSTEMD = $(shell pkg-config --exists systemd --atleast-version=232; echo $$?) +HAVE_SYSTEMD = $(shell pkg-config --exists libsystemd --atleast-version=232; echo $$?) NVME = nvme INSTALL ?= install DESTDIR = -- 2.49.0