|
94 | 94 | test: test/test clean-coverage-run
|
95 | 95 | # Make sure an error code is returned when the test fails
|
96 | 96 | /usr/bin/env bash -c 'set -euo pipefail;\
|
97 |
| - TESTDIR=./test ./test/test -v | ./test/greenest.awk ' |
| 97 | + TESTDIR=./test ./test/test -v | ${AWK} -f ./test/greenest.awk ' |
98 | 98 |
|
99 | 99 | test-valgrind: test/test
|
100 | 100 | TESTDIR=./test ${VALGRIND} \
|
@@ -223,49 +223,49 @@ clean-wayland-protocols:
|
223 | 223 | install: install-dunst install-dunstctl install-dunstrc install-service
|
224 | 224 |
|
225 | 225 | install-dunst: dunst doc
|
226 |
| - install -Dm755 dunst ${DESTDIR}${BINDIR}/dunst |
227 |
| - install -Dm644 docs/dunst.1 ${DESTDIR}${MANPREFIX}/man1/dunst.1 |
228 |
| - install -Dm644 docs/dunst.5 ${DESTDIR}${MANPREFIX}/man5/dunst.5 |
229 |
| - install -Dm644 docs/dunstctl.1 ${DESTDIR}${MANPREFIX}/man1/dunstctl.1 |
230 |
| - install -Dm644 docs/dunstify.1 ${DESTDIR}${MANPREFIX}/man1/dunstify.1 |
| 226 | + ${INSTALL} -Dm755 dunst ${DESTDIR}${BINDIR}/dunst |
| 227 | + ${INSTALL} -Dm644 docs/dunst.1 ${DESTDIR}${MANPREFIX}/man1/dunst.1 |
| 228 | + ${INSTALL} -Dm644 docs/dunst.5 ${DESTDIR}${MANPREFIX}/man5/dunst.5 |
| 229 | + ${INSTALL} -Dm644 docs/dunstctl.1 ${DESTDIR}${MANPREFIX}/man1/dunstctl.1 |
| 230 | + ${INSTALL} -Dm644 docs/dunstify.1 ${DESTDIR}${MANPREFIX}/man1/dunstify.1 |
231 | 231 |
|
232 | 232 | install-dunstctl: dunstctl
|
233 |
| - install -Dm755 dunstctl ${DESTDIR}${BINDIR}/dunstctl |
| 233 | + ${INSTALL} -Dm755 dunstctl ${DESTDIR}${BINDIR}/dunstctl |
234 | 234 |
|
235 | 235 | ifeq (1,${SYSCONF_FORCE_NEW})
|
236 | 236 | install-dunstrc:
|
237 |
| - install -Dm644 dunstrc ${DESTDIR}${SYSCONFFILE} |
| 237 | + ${INSTALL} -Dm644 dunstrc ${DESTDIR}${SYSCONFFILE} |
238 | 238 | endif
|
239 | 239 |
|
240 | 240 | install-service: install-service-dbus
|
241 | 241 | install-service-dbus: service-dbus
|
242 |
| - install -Dm644 org.knopwob.dunst.service ${DESTDIR}${SERVICEDIR_DBUS}/org.knopwob.dunst.service |
| 242 | + ${INSTALL} -Dm644 org.knopwob.dunst.service ${DESTDIR}${SERVICEDIR_DBUS}/org.knopwob.dunst.service |
243 | 243 | ifneq (0,${SYSTEMD})
|
244 | 244 | install-service: install-service-systemd
|
245 | 245 | install-service-systemd: service-systemd
|
246 |
| - install -Dm644 dunst.systemd.service ${DESTDIR}${SERVICEDIR_SYSTEMD}/dunst.service |
| 246 | + ${INSTALL} -Dm644 dunst.systemd.service ${DESTDIR}${SERVICEDIR_SYSTEMD}/dunst.service |
247 | 247 | endif
|
248 | 248 |
|
249 | 249 | ifneq (0,${DUNSTIFY})
|
250 | 250 | install: install-dunstify
|
251 | 251 | install-dunstify: dunstify
|
252 |
| - install -Dm755 dunstify ${DESTDIR}${BINDIR}/dunstify |
| 252 | + ${INSTALL} -Dm755 dunstify ${DESTDIR}${BINDIR}/dunstify |
253 | 253 | endif
|
254 | 254 |
|
255 | 255 | ifneq (0,${COMPLETIONS})
|
256 | 256 | install: install-completions
|
257 | 257 | install-completions:
|
258 |
| - install -Dm644 completions/dunst.bashcomp ${DESTDIR}${BASHCOMPLETIONDIR}/dunst |
259 |
| - install -Dm644 completions/dunstctl.bashcomp ${DESTDIR}${BASHCOMPLETIONDIR}/dunstctl |
260 |
| - install -Dm644 completions/_dunst.zshcomp ${DESTDIR}${ZSHCOMPLETIONDIR}/_dunst |
261 |
| - install -Dm644 completions/_dunstctl.zshcomp ${DESTDIR}${ZSHCOMPLETIONDIR}/_dunstctl |
262 |
| - install -Dm644 completions/dunst.fishcomp ${DESTDIR}${FISHCOMPLETIONDIR}/dunst.fish |
263 |
| - install -Dm644 completions/dunstctl.fishcomp ${DESTDIR}${FISHCOMPLETIONDIR}/dunstctl.fish |
| 258 | + ${INSTALL} -Dm644 completions/dunst.bashcomp ${DESTDIR}${BASHCOMPLETIONDIR}/dunst |
| 259 | + ${INSTALL} -Dm644 completions/dunstctl.bashcomp ${DESTDIR}${BASHCOMPLETIONDIR}/dunstctl |
| 260 | + ${INSTALL} -Dm644 completions/_dunst.zshcomp ${DESTDIR}${ZSHCOMPLETIONDIR}/_dunst |
| 261 | + ${INSTALL} -Dm644 completions/_dunstctl.zshcomp ${DESTDIR}${ZSHCOMPLETIONDIR}/_dunstctl |
| 262 | + ${INSTALL} -Dm644 completions/dunst.fishcomp ${DESTDIR}${FISHCOMPLETIONDIR}/dunst.fish |
| 263 | + ${INSTALL} -Dm644 completions/dunstctl.fishcomp ${DESTDIR}${FISHCOMPLETIONDIR}/dunstctl.fish |
264 | 264 |
|
265 | 265 | ifneq (0,${DUNSTIFY})
|
266 | 266 | install: install-completions-dunstify
|
267 | 267 | install-completions-dunstify:
|
268 |
| - install -Dm644 completions/dunstify.fishcomp ${DESTDIR}${FISHCOMPLETIONDIR}/dunstify.fish |
| 268 | + ${INSTALL} -Dm644 completions/dunstify.fishcomp ${DESTDIR}${FISHCOMPLETIONDIR}/dunstify.fish |
269 | 269 | endif
|
270 | 270 | endif
|
271 | 271 |
|
|
0 commit comments