Description: Fix home dir of buildd
 Use /tmp as home dir when user (i.e buildd) has no home dir,
Author: dod
Applied-Upstream: soon
--- a/lib/Config/Model/TkUI.pm
+++ b/lib/Config/Model/TkUI.pm
@@ -92,7 +92,8 @@
 };
 
 my $main_window;
-my $config_path = path(File::HomeDir->my_home)->child('.cme/config/');
+my $home_str = File::HomeDir->my_home || '/tmp/';
+my $config_path = path($home_str)->child('.cme/config/');
 my $config_file = $config_path->child('tkui.yml');
 
 $config_path -> mkpath;
