From 6bb6e7c9e8e38a30cd0791734f7662a30de54939 Mon Sep 17 00:00:00 2001 From: Alexander Barton Date: Wed, 21 Feb 2018 13:51:22 +0100 Subject: [PATCH] Correctly quote variables in mail-wrapper Makefile --- mail/wrapper/Makefile | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/mail/wrapper/Makefile b/mail/wrapper/Makefile index 0750b0a..182b532 100644 --- a/mail/wrapper/Makefile +++ b/mail/wrapper/Makefile @@ -1,6 +1,6 @@ # # ax-unix: Alex' UNIX Tools & Scripts -# Copyright (c)2013-2017 Alexander Barton (alex@barton.de) +# Copyright (c)2013-2018 Alexander Barton (alex@barton.de) # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -16,7 +16,7 @@ check-local: ./mail-wrapper --help 2>&1 | grep 'mail-wrapper reads from standard input' >/dev/null install-local: mail-wrapper - install -d -o $(USER) -g $(GROUP) -m 755 \ - $(DESTDIR)$(PREFIX)/bin - install -p -o $(USER) -g $(GROUP) -m 755 mail-wrapper \ - $(DESTDIR)$(PREFIX)/bin/mail-wrapper + install -d -o "$(USER)" -g "$(GROUP)" -m 755 \ + "$(DESTDIR)$(PREFIX)/bin" + install -p -o "$(USER)" -g "$(GROUP)" -m 755 mail-wrapper \ + "$(DESTDIR)$(PREFIX)/bin/mail-wrapper" -- 2.39.2