diff options
-rwxr-xr-x | build/build.sh | 2 | ||||
-rwxr-xr-x | build/buildone.sh | 2 | ||||
-rwxr-xr-x | build/buildweb.sh | 2 | ||||
-rw-r--r-- | build/entities/common.ent | 8 | ||||
-rwxr-xr-x | debian/rules | 2 |
5 files changed, 8 insertions, 8 deletions
diff --git a/build/build.sh b/build/build.sh index 01e47e3a7..7f86748ef 100755 --- a/build/build.sh +++ b/build/build.sh @@ -5,7 +5,7 @@ set -e [ -r ./po_functions ] || exit 1 . ./po_functions -manual_release=${manual_release:=etch} +manual_release=${manual_release:=lenny} if [ -z "$languages" ]; then # Buildlist of languages diff --git a/build/buildone.sh b/build/buildone.sh index 762eae40f..9fce00b0b 100755 --- a/build/buildone.sh +++ b/build/buildone.sh @@ -53,7 +53,7 @@ create_profiled () { fi if [ -z "$manual_release" ]; then - manual_release="etch" + manual_release="lenny" fi if [ -z "$manual_target" ]; then manual_target="for_cd" diff --git a/build/buildweb.sh b/build/buildweb.sh index 6d3f52c21..7a5e9ba73 100755 --- a/build/buildweb.sh +++ b/build/buildweb.sh @@ -5,7 +5,7 @@ set -e [ -r ./po_functions ] || exit 1 . ./po_functions -manual_release=${manual_release:=etch} +manual_release=${manual_release:=lenny} if [ -z "$languages" ]; then # Buildlist of languages to be included on the official website diff --git a/build/entities/common.ent b/build/entities/common.ent index 2eda956da..c6927f2a3 100644 --- a/build/entities/common.ent +++ b/build/entities/common.ent @@ -7,10 +7,10 @@ <!ENTITY d-i "<classname>debian-installer</classname>"> -<!ENTITY release "4.0"> -<!ENTITY releasename "etch"> -<!ENTITY releasename-cap "Etch"> -<!ENTITY releasename-uc "ETCH"> +<!ENTITY release "4.0+δ"> +<!ENTITY releasename "lenny"> +<!ENTITY releasename-cap "Lenny"> +<!ENTITY releasename-uc "LENNY"> <!ENTITY FIXME "<emphasis>Documentation not complete, text missing.</emphasis>"> diff --git a/debian/rules b/debian/rules index 6805bcd98..348a61cc2 100755 --- a/debian/rules +++ b/debian/rules @@ -6,7 +6,7 @@ VERSION=$(shell LC_ALL=C dpkg-parsechangelog | grep ^Version: | cut -d ' ' -f 2) DATE=$(shell echo $(VERSION) | cut -d '.' -f 1) SUITE=$(shell LC_ALL=C dpkg-parsechangelog | grep ^Distribution: | cut -d ' ' -f 2) ifeq (${SUITE},unstable) -SUITE=etch +SUITE=lenny endif MANTMP=$(shell pwd)/debian/manual |