aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar ridiculousfish <corydoras@ridiculousfish.com>2012-07-08 15:42:47 -0700
committerGravatar ridiculousfish <corydoras@ridiculousfish.com>2012-07-08 15:42:47 -0700
commitd6a0859eab1e16abf12422b2e1c3cddf50501556 (patch)
tree4cfcf1efc1be5da799ac680076f4f4e7e4728a57
parent4912967eabc447c31847566f03c50433015e9e9c (diff)
Updated doc dir path in fish.cpp
-rw-r--r--fish.cpp4
1 files 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;