Create installation directories

Thu, 14 Mar 2024 19:37:53 +0100

author
Michiel Broek <mbroek@mbse.eu>
date
Thu, 14 Mar 2024 19:37:53 +0100
changeset 636
80967361f257
parent 635
bf2c0f31147b
child 637
21e542c15832

Create installation directories

tools/Makefile file | annotate | diff | comparison | revisions
--- 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 \

mercurial