From 52772e83acdc163b47f9aa36d134d0fcab2e32b9 Mon Sep 17 00:00:00 2001 From: russell Date: Thu, 14 Aug 2008 22:43:50 +0000 Subject: [PATCH] Merged revisions 137987 via svnmerge from https://origsvn.digium.com/svn/asterisk/trunk ........ r137987 | russell | 2008-08-14 17:43:15 -0500 (Thu, 14 Aug 2008) | 2 lines Fix a bashism that causes an error when trying to build the pdf on ubuntu ........ git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.6.1@137989 614ede4d-c843-0410-af14-a771ab80d22e --- doc/tex/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/tex/Makefile b/doc/tex/Makefile index aab96f782..bdb29dd07 100644 --- a/doc/tex/Makefile +++ b/doc/tex/Makefile @@ -15,7 +15,7 @@ else @echo "** located at asterisk.pdf. ***" @echo "**********************************************" ifneq ($(findstring kpsewhich,$(KPATHSEA)),) -ifeq ($(findstring fncychap.sty,$(shell find `$(KPATHSEA) --expand-braces='$$(TEXMF)'| tr -d \! | sed 's/:/ /g'` -name fncychap.sty -print)),) +ifeq ($(findstring fncychap.sty,$(shell find `$(KPATHSEA) --expand-braces='$${TEXMF}'| tr -d \! | sed 's/:/ /g'` -name fncychap.sty -print)),) @echo @echo "WARNING: The fncychap.sty document was not found" @echo "On Ubuntu, install the texlive-latex-extra package." -- 2.11.4.GIT