From: Stefano Lattarini Date: Sat, 2 Jun 2012 09:04:42 +0000 (+0200) Subject: [ng] install: fix an unquoted usage of $(DESTDIR) X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=405781dfa2adf3623f49e77a03ad2ac97c4e3373;p=thirdparty%2Fautomake.git [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 --- 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. ##