diff options
| author | Gibheer <gibheer+git@zero-knowledge.org> | 2019-01-07 09:43:18 +0100 |
|---|---|---|
| committer | Gibheer <gibheer+git@zero-knowledge.org> | 2019-01-07 09:43:18 +0100 |
| commit | 9ea6b0f3436651b2963572e719f534da96f48098 (patch) | |
| tree | d80ee46adea22c277ad9e44ae04169d53e4a3e44 | |
| parent | 7c541189fe618793f76a78b3c1d866256582d83e (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.
| -rw-r--r-- | Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -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 |
