File tree 2 files changed +6
-6
lines changed
2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -74,12 +74,12 @@ task compileCodec2 {
74
74
doLast {
75
75
exec {
76
76
workingDir " $projectDir /build/codec2_build_linux"
77
- commandLine " /usr/bin/ cmake" , " $projectDir /src/codec2"
77
+ commandLine " cmake" , " $projectDir /src/codec2"
78
78
}
79
79
80
80
exec {
81
81
workingDir " $projectDir /build/codec2_build_linux"
82
- commandLine " /usr/bin/ make"
82
+ commandLine " make"
83
83
}
84
84
85
85
for (String abi : rootProject. ext. ABI_FILTERS . split(" ;" )) {
@@ -96,7 +96,7 @@ task compileCodec2 {
96
96
97
97
exec {
98
98
workingDir " $projectDir /build/codec2_build_android_" + abi
99
- commandLine " /usr/bin/ cmake" , " --build" , " ."
99
+ commandLine " cmake" , " --build" , " ."
100
100
}
101
101
102
102
copy {
Original file line number Diff line number Diff line change @@ -74,12 +74,12 @@ task compileOpus {
74
74
doLast {
75
75
exec {
76
76
workingDir " $projectDir /build/opus_build_linux"
77
- commandLine " /usr/bin/ cmake" , " $projectDir /src/opus"
77
+ commandLine " cmake" , " $projectDir /src/opus"
78
78
}
79
79
80
80
exec {
81
81
workingDir " $projectDir /build/opus_build_linux"
82
- commandLine " /usr/bin/ make"
82
+ commandLine " make"
83
83
}
84
84
85
85
for (String abi : rootProject. ext. ABI_FILTERS . split(" ;" )) {
@@ -95,7 +95,7 @@ task compileOpus {
95
95
96
96
exec {
97
97
workingDir " $projectDir /build/opus_build_android_" + abi
98
- commandLine " /usr/bin/ cmake" , " --build" , " ."
98
+ commandLine " cmake" , " --build" , " ."
99
99
}
100
100
101
101
copy {
You can’t perform that action at this time.
0 commit comments