aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorGibheer <gibheer+git@zero-knowledge.org>2019-01-07 09:43:18 +0100
committerGibheer <gibheer+git@zero-knowledge.org>2019-01-07 09:43:18 +0100
commit9ea6b0f3436651b2963572e719f534da96f48098 (patch)
treed80ee46adea22c277ad9e44ae04169d53e4a3e44 /Makefile
parent7c541189fe618793f76a78b3c1d866256582d83e (diff)
fix the release script
The config directory was pushed into a subdirectory, when it wasn't necessary. This lead to a double monzero path mention.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index c691d1b..2a41f7f 100644
--- a/Makefile
+++ b/Makefile
@@ -30,13 +30,13 @@ build: clean
install: build
install -d -m 0755 ${DESTDIR}${bindir}
- install -d -m 0755 ${DESTDIR}${sysconfdir}/${NAME}
+ install -d -m 0755 ${DESTDIR}${sysconfdir}
install -m 0755 ${WRKDIR}/moncheck ${DESTDIR}${bindir}
install -m 0755 ${WRKDIR}/monfront ${DESTDIR}${bindir}
install -m 0755 ${WRKDIR}/monwork ${DESTDIR}${bindir}
- install -m 0644 moncheck.conf.example ${DESTDIR}${sysconfdir}/${NAME}
- install -m 0644 monfront.conf.example ${DESTDIR}${sysconfdir}/${NAME}
- install -m 0644 monwork.conf.example ${DESTDIR}${sysconfdir}/${NAME}
+ install -m 0644 moncheck.conf.example ${DESTDIR}${sysconfdir}
+ install -m 0644 monfront.conf.example ${DESTDIR}${sysconfdir}
+ install -m 0644 monwork.conf.example ${DESTDIR}${sysconfdir}
package: DESTDIR = ${NAME}-${VERSION}
package: install