[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Automake-NG] [PATCH] [ng] install: fix an unquoted usage of $(DESTDIR)
From: |
Stefano Lattarini |
Subject: |
[Automake-NG] [PATCH] [ng] install: fix an unquoted usage of $(DESTDIR) |
Date: |
Sat, 2 Jun 2012 11:05:13 +0200 |
* lib/am/texinfos.am (am__create_installdir): Single-quote $(DESTDIR).
Issue revealed by the 'sc_unquoted_DESTDIR' maintainer check.
Signed-off-by: Stefano Lattarini <address@hidden>
---
lib/am/texinfos.am | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lib/am/texinfos.am b/lib/am/texinfos.am
index 2c94db1..afe08a1 100644
--- a/lib/am/texinfos.am
+++ b/lib/am/texinfos.am
@@ -16,7 +16,7 @@
## along with this program. If not, see <http://www.gnu.org/licenses/>.
## FIXME: this should probably be moved to header-vars.am ...
-am__create_installdir = $(if $(and $1,$^),$(MKDIR_P) $(DESTDIR)$1,@:)
+am__create_installdir = $(if $(and $1,$^),$(MKDIR_P) '$(DESTDIR)$1',@:)
## ----------- ##
## Variables. ##
--
1.7.9.5
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Automake-NG] [PATCH] [ng] install: fix an unquoted usage of $(DESTDIR),
Stefano Lattarini <=