Gunzip the installation manual in .txt and .pdf format, so it's useful

on other platforms too.
This commit is contained in:
Steve McIntyre 2006-12-29 01:48:26 +00:00
parent 7af2565ecf
commit cccbdd469f
2 changed files with 13 additions and 9 deletions

4
debian/changelog vendored
View File

@ -203,6 +203,10 @@ debian-cd (3.0.0) UNRELEASED; urgency=low
[ Frans Pop ] [ Frans Pop ]
* Add linux-image-2.6-prep for powerpc. * Add linux-image-2.6-prep for powerpc.
[ Steve McIntyre ]
* Gunzip the installation manual in .txt and .pdf format, so it's
useful on other platforms too.
-- Frans Pop <fjp@debian.org> Fri, 29 Dec 2006 02:14:05 +0100 -- Frans Pop <fjp@debian.org> Fri, 29 Dec 2006 02:14:05 +0100
debian-cd (2.2.25) unstable; urgency=low debian-cd (2.2.25) unstable; urgency=low

View File

@ -36,7 +36,7 @@ if [ "$OMIT_MANUAL" != 1 ]; then
if [ -d $MANTDIR/usr/share/doc/installation-guide-$ARCH/ ]; then if [ -d $MANTDIR/usr/share/doc/installation-guide-$ARCH/ ]; then
cd $MANTDIR/usr/share/doc/installation-guide-$ARCH cd $MANTDIR/usr/share/doc/installation-guide-$ARCH
rm -f changelog* copyright rm -f changelog* copyright
gunzip *.gz || true find . -name '*.gz' | xargs gunzip || true
mkdir -p $INSTALLDIR mkdir -p $INSTALLDIR
if ! cp -a * $INSTALLDIR; then if ! cp -a * $INSTALLDIR; then