File: hardcode-dynareroot.patch

package info (click to toggle)
dynare 6.5-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 67,796 kB
  • sloc: cpp: 79,110; ansic: 28,917; objc: 12,445; yacc: 4,537; pascal: 1,993; lex: 1,441; sh: 1,132; python: 634; makefile: 628; lisp: 163; xml: 18
file content (15 lines) | stat: -rw-r--r-- 497 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
Description: Hardcode the root of the Dynare installation
 Otherwise it will be incorrectly detected because of the symlink for Octave.
Author: Sébastien Villemot <sebastien@debian.org>
Forwarded: not-needed
--- a/matlab/dynare_config.m
+++ b/matlab/dynare_config.m
@@ -37,7 +37,7 @@ if nargin && ~isempty(path_to_dynare)
     addpath(path_to_dynare);
 end
 
-dynareroot = strrep(which('dynare'),'dynare.m','');
+dynareroot = '/usr/lib/dynare/matlab/';
 
 origin = pwd();
 cd([dynareroot '/..'])