From: Russell Bryant Date: Fri, 23 Jan 2009 22:58:37 +0000 (+0000) Subject: Don't blow up if a branch name has an underscore in it X-Git-Tag: 1.6.2.0-beta1~370 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ac7bd2ddd9f6d860e0bac1bfed3f3e303c11aeeb;p=thirdparty%2Fasterisk.git Don't blow up if a branch name has an underscore in it git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@170790 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/doc/tex/Makefile b/doc/tex/Makefile index bdb29dd07e..40f76fc965 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')/' 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