From 405781dfa2adf3623f49e77a03ad2ac97c4e3373 Mon Sep 17 00:00:00 2001 From: Stefano Lattarini Date: Sat, 2 Jun 2012 11:04:42 +0200 Subject: [PATCH] [ng] install: fix an unquoted usage of $(DESTDIR) * lib/am/texinfos.am (am__create_installdir): Single-quote $(DESTDIR). Issue revealed by the 'sc_unquoted_DESTDIR' maintainer check. Signed-off-by: Stefano Lattarini --- 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 2c94db19f..afe08a1df 100644 --- a/lib/am/texinfos.am +++ b/lib/am/texinfos.am @@ -16,7 +16,7 @@ ## along with this program. If not, see . ## 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. ## -- 2.47.2