Whitespace.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@5701 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Angus Leeming 2002-11-22 12:00:05 +00:00
parent a6500a6e46
commit 3a82c61287

View File

@ -52,7 +52,8 @@
# where ${FORMAT} is either ppm or png.
# Three helper functions.
FIND_IT () {
FIND_IT ()
{
which ${EXECUTABLE} > /dev/null ||
{
echo "Unable to find \"${EXECUTABLE}\". Please install."
@ -60,7 +61,8 @@ FIND_IT () {
}
}
BAIL_OUT () {
BAIL_OUT ()
{
# Remove everything except the original .tex file.
FILES=`ls ${BASE}* | sed -e "/${BASE}.tex/d"`
rm -f ${FILES} texput.log
@ -68,7 +70,8 @@ BAIL_OUT () {
exit 1
}
REQUIRED_VERSION () {
REQUIRED_VERSION ()
{
echo "We require preview.sty version 0.73 or newer. You're using"
grep 'Package: preview' ${LOGFILE}
}