* mu-runtime, mu-util: improve check for muhome dir

This commit is contained in:
Dirk-Jan C. Binnema
2011-01-02 18:45:16 +02:00
parent 091dedf954
commit 49077bf7d1
2 changed files with 7 additions and 6 deletions

View File

@ -52,10 +52,10 @@ static void runtime_free (void);
static gboolean
mu_dir_is_readable_and_writable (const char* muhome)
{
if (mu_util_check_dir(muhome, TRUE, TRUE))
if (mu_util_create_dir_maybe (muhome))
return TRUE;
g_warning ("'%s' is not a read/writable directory", muhome);
g_warning ("cannot use '%s' as a mu homedir", muhome);
g_warning ("use --muhome= to set a different one");
return FALSE;