]> arthur.barton.de Git - ax-make.git/commitdiff
Makefile's: Add missing quoting of variables
authorAlexander Barton <alex@barton.de>
Wed, 18 Nov 2020 11:40:40 +0000 (12:40 +0100)
committerAlexander Barton <alex@barton.de>
Wed, 18 Nov 2020 11:40:40 +0000 (12:40 +0100)
Makefile
scripts/Makefile

index 0bf501e3fda1953b27c1b4b304443b296de0982e..36e6d2b17406730e4119ede55681e7b8b30d08c5 100644 (file)
--- 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"
index 94d80ee6e7ea47ff2726e1771d4872ab8a7b63d4..7de148bca838a8b4cb72f2220573e9980fddc256 100644 (file)
@@ -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"