diff options
author | Not Zed <NotZed@Ximian.com> | 2003-02-06 10:56:10 +0800 |
---|---|---|
committer | Michael Zucci <zucchi@src.gnome.org> | 2003-02-06 10:56:10 +0800 |
commit | 327fbe8316ca0b5131bdc124c529feccb656fc65 (patch) | |
tree | 9de121fa882eb7d30c7aaadad2db97a369799e16 /shell/e-setup.c | |
parent | 749c7626eb82cd791b8278b00f8b5b350d74114b (diff) | |
download | gsoc2013-evolution-327fbe8316ca0b5131bdc124c529feccb656fc65.tar gsoc2013-evolution-327fbe8316ca0b5131bdc124c529feccb656fc65.tar.gz gsoc2013-evolution-327fbe8316ca0b5131bdc124c529feccb656fc65.tar.bz2 gsoc2013-evolution-327fbe8316ca0b5131bdc124c529feccb656fc65.tar.lz gsoc2013-evolution-327fbe8316ca0b5131bdc124c529feccb656fc65.tar.xz gsoc2013-evolution-327fbe8316ca0b5131bdc124c529feccb656fc65.tar.zst gsoc2013-evolution-327fbe8316ca0b5131bdc124c529feccb656fc65.zip |
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
Diffstat (limited to 'shell/e-setup.c')
-rw-r--r-- | shell/e-setup.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/e-setup.c b/shell/e-setup.c index a3895f7e3d..66b0934760 100644 --- a/shell/e-setup.c +++ b/shell/e-setup.c @@ -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. */ |