From: Alexander Barton Date: Wed, 18 Nov 2020 11:40:40 +0000 (+0100) Subject: Makefile's: Add missing quoting of variables X-Git-Url: https://arthur.barton.de/gitweb/?a=commitdiff_plain;h=9785c27a01480f81181062ec169899d1818d349d;hp=3fd998ed3ee398d75c1291f289c894d56e69f3a9;p=ax-make.git Makefile's: Add missing quoting of variables --- 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"