From 9785c27a01480f81181062ec169899d1818d349d Mon Sep 17 00:00:00 2001 From: Alexander Barton Date: Wed, 18 Nov 2020 12:40:40 +0100 Subject: [PATCH] Makefile's: Add missing quoting of variables --- Makefile | 8 ++++---- scripts/Makefile | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/Makefile b/Makefile index 0bf501e..36e6d2b 100644 --- a/Makefile +++ b/Makefile @@ -13,7 +13,7 @@ SUBDIRS = scripts include Makefile.ax install-local: - install -d -o $(USER) -g $(GROUP) -m 755 \ - $(DESTDIR)$(PREFIX)/share/ax-make - install -p -o $(USER) -g $(GROUP) -m 644 Makefile.ax \ - $(DESTDIR)$(PREFIX)/share/ax-make/Makefile.ax + install -d -o "$(USER)" -g "$(GROUP)" -m 755 \ + "$(DESTDIR)$(PREFIX)/share/ax-make" + install -p -o "$(USER)" -g "$(GROUP)" -m 644 Makefile.ax \ + "$(DESTDIR)$(PREFIX)/share/ax-make/Makefile.ax" diff --git a/scripts/Makefile b/scripts/Makefile index 94d80ee..7de148b 100644 --- a/scripts/Makefile +++ b/scripts/Makefile @@ -13,7 +13,7 @@ ALL = axify include ../Makefile.ax install-local: - install -d -o $(USER) -g $(GROUP) -m 755 \ - $(DESTDIR)$(PREFIX)/bin - install -p -o $(USER) -g $(GROUP) -m 755 axify \ - $(DESTDIR)$(PREFIX)/bin/axify + install -d -o "$(USER)" -g "$(GROUP)" -m 755 \ + "$(DESTDIR)$(PREFIX)/bin" + install -p -o "$(USER)" -g "$(GROUP)" -m 755 axify \ + "$(DESTDIR)$(PREFIX)/bin/axify" -- 2.39.2