From 6b47ea5a882e906e5a5893bbb8b7998575a6f4cf Mon Sep 17 00:00:00 2001 From: "Alexander \"Arav\" Andreev" Date: Fri, 15 Dec 2023 04:44:33 +0400 Subject: [PATCH] Fixed a typo in Makefile. --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index d6fe8f7..c1477d2 100644 --- a/Makefile +++ b/Makefile @@ -20,14 +20,14 @@ ${TARGET}: ${SOURCES} install: install -Dm 0755 ${TARGET} ${DESTDIR}${PREFIX}/bin/${TARGET} - install -Dm 0644 configs/config.example.json ${DESTDIR}${PREFIX}etc/${TARGET}.json + install -Dm 0644 configs/config.example.json ${DESTDIR}${PREFIX}/etc/${TARGET}.json install -Dm 0644 LICENSE ${DESTDIR}${PREFIX}/share/licenses/${TARGET}/LICENSE install -Dm 0644 init/systemd.service ${DESTDIR}${PREFIX}${SYSDDIR}/${TARGET}.service uninstall: rm ${DESTDIR}${PREFIX}/bin/${TARGET} rm ${DESTDIR}${PREFIX}/share/licenses/${TARGET} - rm ${DESTDIR}${PREFIX}${SYSDDIR}/${TARGET}.service + rm ${DESTDIR}${SYSDDIR}/${TARGET}.service clean: rm httpprocprobed \ No newline at end of file