From 3ecd86db1098a4f050118df2c842793d5d66ab71 Mon Sep 17 00:00:00 2001 From: "Alexander \"Arav\" Andreev" Date: Mon, 13 Mar 2023 04:38:03 +0400 Subject: [PATCH] Added missing slashes in Makefile. --- Makefile | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Makefile b/Makefile index c2c47cc..6359ca3 100755 --- a/Makefile +++ b/Makefile @@ -24,17 +24,17 @@ run: install: install -Dm 0755 bin/${TARGET} ${DESTDIR}${PREFIX}/bin/${TARGET} install -Dm 0755 tools/radioctl ${DESTDIR}${PREFIX}/bin/${TARGET}ctl - install -Dm 0644 configs/config.yaml ${DESTDIR}etc/dwelling/radio.yaml - install -Dm 0644 configs/radio.liq ${DESTDIR}etc/dwelling/radio.liq + install -Dm 0644 configs/config.yaml ${DESTDIR}/etc/dwelling/radio.yaml + install -Dm 0644 configs/radio.liq ${DESTDIR}/etc/dwelling/radio.liq install -Dm 0644 configs/radio.vars.liq ${DESTDIR}etc/dwelling/radio.vars.liq - install -Dm 0644 configs/logrotate ${DESTDIR}etc/logrotate.d/${TARGET} + install -Dm 0644 configs/logrotate ${DESTDIR}/etc/logrotate.d/${TARGET} - install -Dm 0644 init/systemd.service ${DESTDIR}${SYSDDIR}/${TARGET}.service + install -Dm 0644 init/systemd.service ${DESTDIR}/${SYSDDIR}/${TARGET}.service uninstall: rm ${DESTDIR}${PREFIX}/bin/${TARGET} rm ${DESTDIR}${PREFIX}/bin/${TARGET}ctl - rm ${DESTDIR}etc/dwelling/radio.liq - rm ${DESTDIR}etc/logrotate.d/${TARGET} + rm ${DESTDIR}/etc/dwelling/radio.liq + rm ${DESTDIR}/etc/logrotate.d/${TARGET} rm ${DESTDIR}${SYSDDIR}/${TARGET}.service \ No newline at end of file