# HG changeset patch # User Michiel Broek # Date 1710441473 -3600 # Node ID 80967361f2574853f8c6bc25bc33bc9d75127916 # Parent bf2c0f31147bc702195fe5f03874699832306a15 Create installation directories diff -r bf2c0f31147b -r 80967361f257 tools/Makefile --- a/tools/Makefile Thu Mar 14 19:32:37 2024 +0100 +++ b/tools/Makefile Thu Mar 14 19:37:53 2024 +0100 @@ -17,13 +17,13 @@ install: @if [ -x /lib/systemd/systemd ]; then \ - @mkdir -p ${DESTDIR}/etc/init.d ; \ + mkdir -p ${DESTDIR}/etc/init.d ; \ ${INSTALL} -c -g root -o root -m 0755 init.debian ${DESTDIR}/etc/init.d/thermferm ; \ echo "${INSTALL} -c -g root -o root -m 0755 init.debian ${DESTDIR}/etc/init.d/thermferm" ; \ [ -x /bin/systemctl ] && /bin/systemctl daemon-reload ; \ echo "[ -x /bin/systemctl ] && /bin/systemctl daemon-reload" ; \ elif [ -f /etc/slackware-version ]; then \ - @mkdir -p ${DESTDIR}/etc/rc.d ; \ + mkdir -p ${DESTDIR}/etc/rc.d ; \ ${INSTALL} -c -g root -o root -m 0755 init.slackware ${DESTDIR}/etc/rc.d/rc.thermferm ; \ echo "${INSTALL} -c -g root -o root -m 0755 init.slackware ${DESTDIR}/etc/rc.d/rc.thermferm" ; \ else \