We want to copy whats in the default user dir, not the default user dir.

2003-02-06  Not Zed  <NotZed@Ximian.com>

        * e-setup.c (copy_default_stuff): We want to copy whats in the
        default user dir, not the default user dir.

svn path=/trunk/; revision=19798
This commit is contained in:
Not Zed
2003-02-06 02:56:10 +00:00
committed by Michael Zucci
parent 749c7626eb
commit 327fbe8316
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2003-02-06 Not Zed <NotZed@Ximian.com>
* e-setup.c (copy_default_stuff): We want to copy whats in the
default user dir, not the default user dir.
2003-02-05 Dan Winship <danw@ximian.com>
* Makefile.am (INCLUDES): Define EVOLUTION_IMAGES using

View File

@ -171,7 +171,7 @@ copy_default_stuff (const char *evolution_directory)
return FALSE;
}
command = g_strconcat ("cp -r " DEFAULT_USER_PATH " ", evolution_directory, NULL);
command = g_strconcat ("cp -r " DEFAULT_USER_PATH "/* ", evolution_directory, NULL);
if (system (command) != 0) {
/* FIXME: Give more help. */