summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDieter Plaetinck <dieter@plaetinck.be>2008-11-03 21:33:10 +0100
committerDieter Plaetinck <dieter@plaetinck.be>2008-11-03 21:33:10 +0100
commit83eef977a27c2216ea8c9a42ab17e8f18677a4c7 (patch)
treed2143c07e836c889f0bd59232749f11f4c950835
parent148d75ff647feae64c563dfb73f4d650a9b14c4b (diff)
fixes for configure_system and locales
-rw-r--r--src/core/procedures/base4
-rw-r--r--src/core/procedures/interactive4
2 files changed, 3 insertions, 5 deletions
diff --git a/src/core/procedures/base b/src/core/procedures/base
index 4f324e9..ba4f6c2 100644
--- a/src/core/procedures/base
+++ b/src/core/procedures/base
@@ -142,15 +142,13 @@ worker_configure_system ()
worker_mkinitcpio ()
{
- #TODO:check that this is the right command when projects.archlinux.org is back up
run_mkinitcpio
}
worker_locales ()
{
- #TODO:what to do here? didn't we already do them?
- true
+ target_locale_gen
}
diff --git a/src/core/procedures/interactive b/src/core/procedures/interactive
index 8357fe4..8ff5776 100644
--- a/src/core/procedures/interactive
+++ b/src/core/procedures/interactive
@@ -113,7 +113,7 @@ mainmenu()
}
-configure_system()
+worker_configure_system()
{
## PREPROCESSING ##
# only done on first invocation of configure_system
@@ -133,7 +133,7 @@ configure_system()
fi
- interactive_configure_system && run_mkinitcpio && target_locale-gen && return 0
+ interactive_configure_system && return 0
return 1
}