mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-04 20:04:50 +00:00
https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r84474 | russell | 2007-10-02 15:06:07 -0500 (Tue, 02 Oct 2007) | 5 lines * Don't build the menuselect-tree for the tarball, as it requires running the configure script first * Change the Makefile to note that menuselect-tree depends on the configure script. ........ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@84475 65c4cc65-6c06-0410-ace0-fbb531ad65f3
13 lines
454 B
Bash
Executable File
13 lines
454 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
# This script will be executed by the 'mkrelease' script to do any tasks
|
|
# necessary during tarball creation of this project.
|
|
#
|
|
# It will be executed from the top-level directory of the project.
|
|
|
|
make -C sounds all MENUSELECT_CORE_SOUNDS=CORE-SOUNDS-EN-GSM MENUSELECT_MOH=MOH-FREEPLAY-WAV WGET=wget DOWNLOAD=wget
|
|
|
|
VERSION=`cat .version`
|
|
sed -i -e "s/ASTERISKVERSION/${VERSION}/" doc/tex/asterisk.tex
|
|
cd doc/tex && rubber --pdf asterisk.tex
|