summaryrefslogtreecommitdiff
path: root/src/core/libs/lib-software.sh
diff options
context:
space:
mode:
authorDieter Plaetinck <dieter@plaetinck.be>2008-11-03 00:10:20 +0100
committerDieter Plaetinck <dieter@plaetinck.be>2008-11-03 00:10:20 +0100
commitaef35cac61774c147e1324220b8647f2af74b13b (patch)
tree4b8153067f73ec1d84461ea14f8b32c1322afc9d /src/core/libs/lib-software.sh
parentb88f4c5007ed5968ecd7dbf7e27a633e32c657ed (diff)
decoupling of flow control and interactive UI code from interactive installer + some fixes and todo updates
Diffstat (limited to 'src/core/libs/lib-software.sh')
-rw-r--r--src/core/libs/lib-software.sh10
1 files changed, 8 insertions, 2 deletions
diff --git a/src/core/libs/lib-software.sh b/src/core/libs/lib-software.sh
index 52de1e8..96ff5ab 100644
--- a/src/core/libs/lib-software.sh
+++ b/src/core/libs/lib-software.sh
@@ -52,6 +52,12 @@ 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
- notify "Generating glibc base locales..." 4 40
- chroot ${var_TARGET_DIR} locale-gen >/dev/null
+ target_locale-gen
}
+
+
+target_locale-gen ()
+{
+ notify "Generating glibc base locales..."
+ chroot ${var_TARGET_DIR} locale-gen >/dev/null
+} \ No newline at end of file