From 30f457205c6a52b291a7ddfbbbec87c8c19ab22a Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Fri, 22 Jan 2021 05:02:58 +0000 Subject: [PATCH] pppd/Makefile.linux: Fix copy/paste typo (#237) A previous commit to fix a make issue had a copy/paste error, fix it to refer to the correct header. Signed-off-by: Richard Purdie --- pppd/Makefile.linux | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pppd/Makefile.linux b/pppd/Makefile.linux index 312580b..c3489fb 100644 --- a/pppd/Makefile.linux +++ b/pppd/Makefile.linux @@ -144,7 +144,7 @@ CFLAGS += -DHAS_SHADOW #LIBS += -lshadow $(LIBS) endif -CRYPTHEADER = "\#include " +CRYPTHEADER = "\#include " ifeq ($(shell echo $(CRYPTHEADER) | $(CC) -E - >/dev/null 2>&1 && echo yes),yes) CFLAGS += -DHAVE_CRYPT_H=1 LIBS += -lcrypt -- 2.39.2