From: mjwybrow Date: Wed, 23 Sep 2009 19:01:59 +0000 (+0000) Subject: - Update to use new Inkscape config directory: ~/.config/Inkscape X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=8161f0a9ddef9341592536b7d75ab4cdaaefb7a6;p=inkscape.git - Update to use new Inkscape config directory: ~/.config/Inkscape --- diff --git a/packaging/macosx/ScriptExec/main.c b/packaging/macosx/ScriptExec/main.c index 69f5b108c..c798e3bf9 100644 --- a/packaging/macosx/ScriptExec/main.c +++ b/packaging/macosx/ScriptExec/main.c @@ -243,8 +243,8 @@ static OSStatus FCCacheFailedHandler(EventHandlerCallRef theHandlerCall, ShowFirstStartWarningDialog(); // Note that we've seen the warning. - system("test -d \"$HOME/.inkscape\" || mkdir \"$HOME/.inkscape\"; " - "touch \"$HOME/.inkscape/.fccache-new\""); + system("test -d \"$HOME/.config/Inkscape\" || mkdir -p \"$HOME/.config/Inkscape\"; " + "touch \"$HOME/.config/Inkscape/.fccache-new\""); // Rerun now. OSErr err = ExecuteScript(scriptPath, &pid); ExitToShell();