Added a missing backslash to a command in the compressdoc script, reported by Devan Lippman

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@3471 af4574ff-66df-0310-9fd7-8a98e5e911e0
This commit is contained in:
Randy McMurchy 2005-02-14 22:44:39 +00:00
parent 234baeb578
commit e0be560c34
2 changed files with 3 additions and 2 deletions

View File

@ -24,7 +24,8 @@ who wrote what.</para>
<listitem><para>February 14th, 2005 [randy]: Added md5sums to Chapter 37
through 40 package instructions; updated essential codecs to 20050115 in
MPlayer instructions.</para></listitem>
MPlayer instructions; added a missing backslash to a command in the
compressdoc script, reported by Devan Lippman.</para></listitem>
<listitem><para>February 13th, 2005 [randy]: Added md5sums to AbiWord,
GnuCash, ALSA and Chapter 35-36 package instructions.</para></listitem>

View File

@ -373,7 +373,7 @@ for DIR in $MAN_DIR; do
echo "-&gt; Entering ${DIR}/${FILE}..." &gt; $DEST_FD0
# I need not pass --conf, as I specify the directory to work on
# But I need exit in case of error
"$MY_NAME" ${COMP_METHOD} ${COMP_LVL} ${LN_OPT} ${VERBOSE_OPT}
"$MY_NAME" ${COMP_METHOD} ${COMP_LVL} ${LN_OPT} ${VERBOSE_OPT} \
${FORCE_OPT} "${DIR}/${FILE}" || exit 1
echo "&lt;- Leaving ${DIR}/${FILE}." &gt; $DEST_FD1
cd "$DIR" # Needed for the next iteration of the loop