From e8ad52d97db36e2e6f79d0008937e5c3073d6bdc Mon Sep 17 00:00:00 2001 From: Logicer Date: Fri, 20 Dec 2024 16:00:25 +1100 Subject: [PATCH] fix makefile --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 18e96da..f8408b4 100644 --- a/Makefile +++ b/Makefile @@ -39,5 +39,5 @@ else # Uncomment pam_tid.so sudo sed -i ".old" -e '/$(PAM_TID_TEXT)/s/^#//g' $(PAM_FILE) # Insert $(PAM_TEXT) after the pam_tid.so line. This allows pam_tid.so to be used by default (which unexpectedly allows watch authentication as well) with pam_watchid.so as a fallback in cases where pam_tid.so falls through due to TouchID being deemed unavailable by macOS. - sudo sed -i "" -e '/$(PAM_TID_TEXT)/s/$/\nauth sufficient $(LIBRARY_NAME)/g' $(PAM_FILE) + sudo sed -i "" -e '/$(PAM_TID_TEXT)/s/$$/auth sufficient $(LIBRARY_NAME)/g' $(PAM_FILE) endif