From 367a302e09700e56ab3571082dbbe2518148380f Mon Sep 17 00:00:00 2001 From: Richard Mudgett Date: Fri, 23 Jan 2009 23:53:03 +0000 Subject: [PATCH] Merged revisions 170794 via svnmerge from https://origsvn.digium.com/svn/asterisk/trunk ........ r170794 | rmudgett | 2009-01-23 17:10:34 -0600 (Fri, 23 Jan 2009) | 1 line Fix asterisk.pdf generation if branch name has an underscore in it. ........ git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.6.1@170831 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 40f76fc965..cce8612fd1 100644 --- a/doc/tex/Makefile +++ b/doc/tex/Makefile @@ -24,7 +24,7 @@ ifeq ($(findstring fncychap.sty,$(shell find `$(KPATHSEA) --expand-braces='$${TE endif endif @cp asterisk.tex asterisk.tex.orig - @sed -e 's/ASTERISKVERSION/$(shell echo $(ASTERISKVERSION) | sed -e 's/\//\\\//g' | sed -e 's/_/\\_/g')/' asterisk.tex > asterisk_local.tex + @sed -e 's/ASTERISKVERSION/$(shell echo $(ASTERISKVERSION) | sed -e 's/\//\\\//g' | sed -e 's/_/\\\\_/g')/' asterisk.tex > asterisk_local.tex @mv asterisk_local.tex asterisk.tex @$(RUBBER) --pdf asterisk.tex @mv asterisk.tex.orig asterisk.tex