* On release builds, use the full version number including all the dots
(e.g. 6.0.0 for the squeeze release instead of 600).
This commit is contained in:
parent
6752a1634a
commit
7bd5c98491
|
@ -36,6 +36,8 @@ debian-cd (3.1.4) UNRELEASED; urgency=low
|
|||
* When generating both iso and jigdo files, make sure that the iso files
|
||||
are at least as new as the jigdo files, as this helps people mirroring.
|
||||
Closes: #587774
|
||||
* On release builds, use the full version number including all the dots
|
||||
(e.g. 6.0.0 for the squeeze release instead of 600).
|
||||
|
||||
[ Ian Campbell ]
|
||||
* boot-x86: detect duplicates in the extra images used for installation
|
||||
|
|
|
@ -57,7 +57,7 @@ do
|
|||
opts=`cat $DIR/$n.mkisofs_opts` || true
|
||||
dirs=`cat $DIR/$n.mkisofs_dirs` || true
|
||||
volid=`cat $DIR/$n.volid`
|
||||
relname=`echo $DEBVERSION | sed -e 's/[. ]//g'`
|
||||
relname=`echo $DEBVERSION | sed -e 's/ //g'`
|
||||
DISKINFO=`cat $DIR/$n.diskinfo`
|
||||
|
||||
ARCHLIST=`echo "$ARCHES" | tr ' ' '-'`
|
||||
|
|
Loading…
Reference in New Issue