summaryrefslogtreecommitdiff
path: root/src/core/libs/lib-software.sh
diff options
context:
space:
mode:
authorDieter Plaetinck <dieter@plaetinck.be>2008-11-02 23:04:21 +0100
committerDieter Plaetinck <dieter@plaetinck.be>2008-11-02 23:04:21 +0100
commit51c3e18910565ece5fdfeeec5d3673fb19035938 (patch)
treead804e122ecfcceea461bcf63f4ca0dff2548896 /src/core/libs/lib-software.sh
parent3b7d5576116b84b0062d995f00190d95481b0cfb (diff)
sort of fixed/decoupled auto_{fstab,network,locale}, run_mkinitcpio
Diffstat (limited to 'src/core/libs/lib-software.sh')
-rw-r--r--src/core/libs/lib-software.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/libs/lib-software.sh b/src/core/libs/lib-software.sh
index 95bc07a..52de1e8 100644
--- a/src/core/libs/lib-software.sh
+++ b/src/core/libs/lib-software.sh
@@ -47,11 +47,11 @@ installpkg() {
# auto_locale(). taken from setup
# enable glibc locales from rc.conf and build initial locale DB
-auto_locale()
+target_configure_inital_locale()
{
for i in $(grep "^LOCALE" ${var_TARGET_DIR}/etc/rc.conf | sed -e 's/.*="//g' -e's/\..*//g'); do
sed -i -e "s/^#$i/$i/g" ${var_TARGET_DIR}/etc/locale.gen
done
- DIALOG --infobox "Generating glibc base locales..." 4 40
+ notify "Generating glibc base locales..." 4 40
chroot ${var_TARGET_DIR} locale-gen >/dev/null
}