From 6b1816998c7fdb7ad1efb2e93c7fda60e2ff4318 Mon Sep 17 00:00:00 2001 From: Anne Bezemer Date: Sat, 12 Aug 2000 22:44:53 +0000 Subject: [PATCH] Get correct dedication.txt regardless of point release number. --- tools/add-bin-doc | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/tools/add-bin-doc b/tools/add-bin-doc index 3a18fe5f..8c41ce5d 100755 --- a/tools/add-bin-doc +++ b/tools/add-bin-doc @@ -7,15 +7,17 @@ BDIR=$TDIR/$CODENAME-$ARCH ADIR=$APTTMP/$CODENAME-$ARCH SDIR=$TDIR/$CODENAME-src +DEBMAINVER="`echo $DEBVERSION | sed -e 's/[ _r].*//'`" + for i in $BDIR/*.packages; do dir=${i%%.packages} dir=${dir##$BDIR/} dir=$BDIR/CD$dir cp -df $MIRROR/README* $dir/ - if [ -f $dir/doc/dedication-$DEBVERSION.txt ]; then - mv $dir/doc/dedication-$DEBVERSION.txt $dir/dedication.txt - ln -s ../dedication.txt $dir/doc/dedication-$DEBVERSION.txt + if [ -f $dir/doc/dedication-$DEBMAINVER.txt ]; then + mv $dir/doc/dedication-$DEBMAINVER.txt $dir/dedication.txt + ln -s ../dedication.txt $dir/doc/dedication-$DEBMAINVER.txt fi rm -f $dir/README $dir/README.1ST \