From 74c4b84e73c5a9d29cd5d40b24757ff68afa31b2 Mon Sep 17 00:00:00 2001 From: Russell Bryant Date: Thu, 14 Aug 2008 22:43:36 +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: https://origsvn.digium.com/svn/asterisk/branches/1.6.0@137988 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- doc/tex/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/tex/Makefile b/doc/tex/Makefile index aab96f7822..bdb29dd07e 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."