Gunzip the installation manual in .txt and .pdf format, so it's useful
on other platforms too.
This commit is contained in:
parent
7af2565ecf
commit
cccbdd469f
|
@ -183,18 +183,18 @@ debian-cd (3.0.0) UNRELEASED; urgency=low
|
||||||
+ tools/add_secured
|
+ tools/add_secured
|
||||||
+ don't depend on jigdo-file any more
|
+ don't depend on jigdo-file any more
|
||||||
+ don't depend on apt-utils any more - we don't use apt-ftparchive now
|
+ don't depend on apt-utils any more - we don't use apt-ftparchive now
|
||||||
+ don't depend on debootstrap any more - we grab and use the
|
+ don't depend on debootstrap any more - we grab and use the
|
||||||
latest version direct from the archive instead these days
|
latest version direct from the archive instead these days
|
||||||
+ don't suggest binutils-multiarch, we haven't needed that for mipsel
|
+ don't suggest binutils-multiarch, we haven't needed that for mipsel
|
||||||
CDs since woody!
|
CDs since woody!
|
||||||
+ remove the SKIPMIRRORCHECK variable, now completely obsolete
|
+ remove the SKIPMIRRORCHECK variable, now completely obsolete
|
||||||
+ change the mkisofs dep from (mkisofs | mkhybrid) to
|
+ change the mkisofs dep from (mkisofs | mkhybrid) to
|
||||||
(mkisofs | genisoimage)
|
(mkisofs | genisoimage)
|
||||||
+ remove Recommends on debianutils
|
+ remove Recommends on debianutils
|
||||||
+ remove Suggests on palo - we grab and use the correct version
|
+ remove Suggests on palo - we grab and use the correct version
|
||||||
direct from the archive instead these days
|
direct from the archive instead these days
|
||||||
+ remove Suggests on delo - we grab and use the correct version
|
+ remove Suggests on delo - we grab and use the correct version
|
||||||
direct from the archive instead these days
|
direct from the archive instead these days
|
||||||
* Other cleanups:
|
* Other cleanups:
|
||||||
+ Make build_all.sh work again, adapting build.sh
|
+ Make build_all.sh work again, adapting build.sh
|
||||||
+ Promote Suggests: on netpbm, syslinux to Recommends:
|
+ Promote Suggests: on netpbm, syslinux to Recommends:
|
||||||
|
@ -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
|
||||||
|
|
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue