summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/bart/bart_path-0.6.00.patch
blob: e5e2d200a6fe9605fd0e1874d6f62b59a0c08c15 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
diff -ru a/matlab/bart.m b/matlab/bart.m
--- a/matlab/bart.m	2020-09-17 12:25:18.371980782 -0500
+++ b/matlab/bart.m	2020-09-17 12:26:49.859905950 -0500
@@ -28,7 +28,7 @@
 	end
 
     % Check bart toolbox path
-	bart_path = getenv('TOOLBOX_PATH');
+	bart_path = [getenv('TOOLBOX_PATH') '/bin'];
 	isWSL = false;
 	if isempty(bart_path)
 		if exist('/usr/local/bin/bart', 'file')
diff -ru a/python/bart.py b/python/bart.py
--- a/python/bart.py	2020-09-17 12:25:18.371980782 -0500
+++ b/python/bart.py	2020-09-17 12:27:34.161869637 -0500
@@ -19,7 +19,7 @@
         return None
 
     try:
-        bart_path = os.environ['TOOLBOX_PATH'] + '/bart '
+        bart_path = os.environ['TOOLBOX_PATH'] + '/bin '
     except:
         bart_path = None
     isWSL = False
diff -ru a/scripts/espirit_econ.sh b/scripts/espirit_econ.sh
--- a/scripts/espirit_econ.sh	2020-09-17 12:25:18.370980783 -0500
+++ b/scripts/espirit_econ.sh	2020-09-17 12:29:14.464787254 -0500
@@ -56,8 +56,6 @@
 fi
 
 
-export PATH=$TOOLBOX_PATH:$PATH
-
 input=$(readlink -f "$1")
 output=$(readlink -f "$2")
 
@@ -67,7 +65,7 @@
 	exit 1
 fi
 
-if [ ! -e $TOOLBOX_PATH/bart ] ; then
+if [ ! -e $TOOLBOX_PATH/bin/bart ] ; then
         echo "\$TOOLBOX_PATH is not set correctly!" >&2
 	exit 1
 fi
diff -ru a/scripts/grasp.sh b/scripts/grasp.sh
--- a/scripts/grasp.sh	2020-09-17 12:25:18.370980783 -0500
+++ b/scripts/grasp.sh	2020-09-17 12:29:56.699752498 -0500
@@ -90,8 +90,6 @@
 fi
 
 
-export PATH=$TOOLBOX_PATH:$PATH
-
 input=$(readlink -f "$1")
 output=$(readlink -f "$2")
 
@@ -101,7 +99,7 @@
 	exit 1
 fi
 
-if [ ! -e $TOOLBOX_PATH/bart ] ; then
+if [ ! -e $TOOLBOX_PATH/bin/bart ] ; then
         echo "\$TOOLBOX_PATH is not set correctly!" >&2
 	exit 1
 fi
diff -ru a/scripts/octview.m b/scripts/octview.m
--- a/scripts/octview.m	2020-09-17 12:25:18.370980783 -0500
+++ b/scripts/octview.m	2020-09-17 12:30:45.414712364 -0500
@@ -1,6 +1,6 @@
 #! /usr/bin/octave -qf
 
-addpath(strcat(getenv("TOOLBOX_PATH"), "/matlab"));
+addpath(strcat(getenv("TOOLBOX_PATH"), "/bin", "/matlab"));
 arg_list = argv();
 
 
diff -ru a/scripts/profile.sh b/scripts/profile.sh
--- a/scripts/profile.sh	2020-09-17 12:25:18.370980783 -0500
+++ b/scripts/profile.sh	2020-09-17 12:31:53.517656180 -0500
@@ -45,7 +45,7 @@
         exit 1
 fi
 
-if [ ! -e $TOOLBOX_PATH/bart ] ; then
+if [ ! -e $TOOLBOX_PATH/bin/bart ] ; then
         echo "\$TOOLBOX_PATH is not set correctly!" >&2
         exit 1
 fi
@@ -57,7 +57,7 @@
 cd $WORKDIR
 
 
-nm --defined-only $TOOLBOX_PATH/bart | cut -c11-16,19- | sort > bart.syms
+nm --defined-only $TOOLBOX_PATH/bin/bart | cut -c11-16,19- | sort > bart.syms
 
 
 cat $in	| grep "^TRACE" \
diff -ru a/startup.m b/startup.m
--- a/startup.m	2020-09-17 12:25:18.343980805 -0500
+++ b/startup.m	2020-09-17 12:34:28.968538214 -0500
@@ -1,4 +1,3 @@
 % set Matlab path and TOOLBOX_PATH environment variable
-addpath(fullfile(pwd, 'matlab'));
-setenv('TOOLBOX_PATH', pwd);
+addpath(fullfile(getenv('TOOLBOX_PATH'), 'matlab'));