From d6a0859eab1e16abf12422b2e1c3cddf50501556 Mon Sep 17 00:00:00 2001 From: ridiculousfish Date: Sun, 8 Jul 2012 15:42:47 -0700 Subject: Updated doc dir path in fish.cpp --- fish.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fish.cpp b/fish.cpp index 67f6f4d1..b46317ef 100644 --- a/fish.cpp +++ b/fish.cpp @@ -165,7 +165,7 @@ static struct config_paths_t determine_config_directory_paths(const char *argv0) /* Append share, etc, doc */ paths.data = wide_resolved_path + L"share/fish"; paths.sysconf = wide_resolved_path + L"etc/fish"; - paths.doc = wide_resolved_path + L"doc"; + paths.doc = wide_resolved_path + L"doc/fish"; /* But the bin_dir is the resolved_path, minus fish (aka the MacOS directory) */ paths.bin = str2wcstring(exec_path); @@ -193,7 +193,7 @@ static struct config_paths_t determine_config_directory_paths(const char *argv0) paths.data = base_path + L"/share/fish"; paths.sysconf = base_path + L"/etc/fish"; - paths.doc = base_path + L"/share/doc"; + paths.doc = base_path + L"/share/doc/fish"; paths.bin = base_path + L"/bin"; struct stat buf; -- cgit v1.2.3