Fix error in expansion of %ARCH% variables in D-I image location envvars
This commit is contained in:
parent
46ff6763b2
commit
88824982ba
|
@ -38,6 +38,7 @@ debian-cd (3.1.0) UNRELEASED; urgency=low
|
|||
* Update the contrib/testingcds script based on its current version on
|
||||
farbror.
|
||||
* Clean up and update interesting-fromcd23 and exclude task files for lenny.
|
||||
* Fix error in expansion of %ARCH% variables in D-I image location envvars.
|
||||
|
||||
-- Frans Pop <fjp@debian.org> Thu, 13 Nov 2008 22:17:21 +0100
|
||||
|
||||
|
|
|
@ -3,8 +3,8 @@
|
|||
|
||||
|
||||
# Expand %ARCH% variable in envvars for location of D-I images
|
||||
DI_WWW_HOME="$(echo "$DI_WWW_HOME" | sed -e 's|%ARCH%|$ARCH|g')"
|
||||
DI_DIR="$(echo "$DI_DIR" | sed -e 's|%ARCH%|$ARCH|g')"
|
||||
DI_WWW_HOME="$(echo "$DI_WWW_HOME" | sed -e "s|%ARCH%|$ARCH|g")"
|
||||
DI_DIR="$(echo "$DI_DIR" | sed -e "s|%ARCH%|$ARCH|g")"
|
||||
|
||||
|
||||
# install_languages decompacts the language packs, you should give the path
|
||||
|
|
Loading…
Reference in New Issue