From 0b44803a625a0ac333fc35cea8ad25da3bb22f00 Mon Sep 17 00:00:00 2001 From: Jan Nieuwenhuizen Date: Mon, 19 Jan 2009 16:44:11 +0100 Subject: [PATCH] Use shell invocation $$() rather than make invocation $(shell ). Fixes info symlinks when installing from --srcdir, ie: GUB3. --- GNUmakefile.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/GNUmakefile.in b/GNUmakefile.in index 0e363b1c96..012a9e82f7 100644 --- a/GNUmakefile.in +++ b/GNUmakefile.in @@ -77,8 +77,8 @@ install-WWW: install-info-WWW: $(MAKE) -C Documentation/user install-info $(MAKE) -C input/lsr install-info - (cd $(DESTDIR)$(infodir) && rm -f lilypond && ln -sf $(shell $(PYTHON) $(buildscript-dir)/relative $(DESTDIR)$(webdir)/Documentation/user) lilypond) - (cd $(DESTDIR)$(infodir) && rm -f lilypond-snippets && ln -sf $(shell $(PYTHON) $(buildscript-dir)/relative $(DESTDIR)$(webdir)/input/lsr) lilypond-snippets) + (cd $(DESTDIR)$(infodir) && rm -f lilypond && ln -sf $$($(PYTHON) $(buildscript-dir)/relative $(DESTDIR)$(webdir)/Documentation/user) lilypond) + (cd $(DESTDIR)$(infodir) && rm -f lilypond-snippets && ln -sf $$($(PYTHON) $(buildscript-dir)/relative $(DESTDIR)$(webdir)/input/lsr) lilypond-snippets) web-install: $(MAKE) out=www install-WWW -- 2.39.2