diff options
author | Joey Payne <jyapayne@gmail.com> | 2015-04-25 12:07:35 -0600 |
---|---|---|
committer | Joey Payne <jyapayne@gmail.com> | 2015-04-25 12:07:35 -0600 |
commit | db84afe016cf0684e7c3d700ec507f3b8461a8b9 (patch) | |
tree | 1542ef9e618fbe20012958541707ba478fd0394e /compiler | |
parent | 47271b094c224ddd365d2f0c79249493af2ab084 (diff) | |
download | Nim-db84afe016cf0684e7c3d700ec507f3b8461a8b9.tar.gz |
Fixed the paths of nimfix and nimsuggest to be relative.
Diffstat (limited to 'compiler')
-rw-r--r-- | compiler/nimfix/nimfix.nim.cfg | 2 | ||||
-rw-r--r-- | compiler/nimsuggest/nimsuggest.nim.cfg | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/compiler/nimfix/nimfix.nim.cfg b/compiler/nimfix/nimfix.nim.cfg index b23ed13fb..73219d6f8 100644 --- a/compiler/nimfix/nimfix.nim.cfg +++ b/compiler/nimfix/nimfix.nim.cfg @@ -5,7 +5,7 @@ hint[XDeclaredButNotUsed]:off path:"$projectPath/.." path:"$lib/packages/docutils" -path:"../compiler" +path:"../../compiler" define:useStdoutAsStdmsg symbol:nimfix diff --git a/compiler/nimsuggest/nimsuggest.nim.cfg b/compiler/nimsuggest/nimsuggest.nim.cfg index 062092f16..acca17396 100644 --- a/compiler/nimsuggest/nimsuggest.nim.cfg +++ b/compiler/nimsuggest/nimsuggest.nim.cfg @@ -6,7 +6,7 @@ hint[XDeclaredButNotUsed]:off path:"$projectPath/../.." path:"$lib/packages/docutils" -path:"$nim/compiler" +path:"../../compiler" define:useStdoutAsStdmsg define:nimsuggest |