* lib/am/texinfos.am (am__create_installdir): Single-quote $(DESTDIR). Issue revealed by the 'sc_unquoted_DESTDIR' maintainer check.
Signed-off-by: Stefano Lattarini <[email protected]> --- 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
