]> git.lyx.org Git - features.git/commitdiff
Rename bbox.sed so that multiple runs don't get confused.
authorAngus Leeming <leeming@lyx.org>
Tue, 30 Jul 2002 17:14:16 +0000 (17:14 +0000)
committerAngus Leeming <leeming@lyx.org>
Tue, 30 Jul 2002 17:14:16 +0000 (17:14 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@4808 a592a061-630c-0410-9148-cb99ea01b6c8

lib/ChangeLog
lib/scripts/lyxpreview2ppm.sh

index ffbf65ac7d6ddd2757337894a143ab7f59df765b..eb94a6b6e4402d08e56325b5be0fa73e2926a433 100644 (file)
@@ -1,3 +1,8 @@
+2002-07-30  Angus Leeming  <leeming@lyx.org>
+
+       * scripts/lyxpreview2ppm.sh: rename bbox.sed so that multiple runs
+       don't get confused.
+
 2002-07-24  Adrien Rebollo  <adrien.rebollo@gmx.fr>
 
        * examples/fr_CV.lyx:               new file
index 9f75c1f0ca6ddd209fc6e91540253e80286bb784..2720b9bbb6c94f38d8af1cf98f02a4fff4d20621 100644 (file)
@@ -50,7 +50,7 @@ DIR=`dirname $1`
 BASE=`basename $1 .tex`
 DVIFILE=${BASE}.dvi
 PSFILE=${BASE}.ps
-METRICS=${BASE}.metrics
+METRICSFILE=${BASE}.metrics
 
 # LaTeX -> DVI.
 cd ${DIR}
@@ -106,12 +106,12 @@ if [ ${STATUS} -ne 0 ]; then
        BAIL_OUT
 fi
 
-# Attempt to generate a file ${METRICS} that contains only the tightpage
+# Attempt to generate a file ${METRICSFILE} that contains only the tightpage
 # bounding box info, extract from ${PSFILE}
 
 # 1. Create a file containing the sed instructions
-SEDSCRIPT=bbox.sed
-cat - > ${SEDSCRIPT} <<EOF
+SEDFILE=${BASE}.sed
+cat - > ${SEDFILE} <<EOF
 # Delete everything that's enclosed between %%BeginDocument and %%EndDocument
 /^\%\%BeginDocument/,/^\%\%EndDocument/d
 
@@ -134,8 +134,8 @@ d
 EOF
 
 # 2. Run sed!
-sed -f ${SEDSCRIPT} < ${PSFILE} > ${METRICS}
-rm -f ${SEDSCRIPT}
+sed -f ${SEDFILE} < ${PSFILE} > ${METRICSFILE}
+rm -f ${SEDFILE}
 
 # The ppm files have spurious (?! say some !) white space on the left and right
 # sides. If you want this removed set REMOVE_WS=1.