From: Jan Nieuwenhuizen Date: Mon, 19 Jan 2009 15:44:11 +0000 (+0100) Subject: Use shell invocation $$() rather than make invocation $(shell ). X-Git-Tag: release/2.12.2-1~4^2~8 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=0b44803a625a0ac333fc35cea8ad25da3bb22f00;p=lilypond.git Use shell invocation $$() rather than make invocation $(shell ). Fixes info symlinks when installing from --srcdir, ie: GUB3. --- 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