Skip to content

Commit b19dcb8

Browse files
committed
Change from /usr/bin/cmake to cmake
1 parent aa1087c commit b19dcb8

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

libcodec2-android/build.gradle

+3-3
Original file line numberDiff line numberDiff line change
@@ -74,12 +74,12 @@ task compileCodec2 {
7474
doLast {
7575
exec {
7676
workingDir "$projectDir/build/codec2_build_linux"
77-
commandLine "/usr/bin/cmake", "$projectDir/src/codec2"
77+
commandLine "cmake", "$projectDir/src/codec2"
7878
}
7979

8080
exec {
8181
workingDir "$projectDir/build/codec2_build_linux"
82-
commandLine "/usr/bin/make"
82+
commandLine "make"
8383
}
8484

8585
for(String abi : rootProject.ext.ABI_FILTERS.split(";")) {
@@ -96,7 +96,7 @@ task compileCodec2 {
9696

9797
exec {
9898
workingDir "$projectDir/build/codec2_build_android_" + abi
99-
commandLine "/usr/bin/cmake", "--build", "."
99+
commandLine "cmake", "--build", "."
100100
}
101101

102102
copy {

libopus-android/build.gradle

+3-3
Original file line numberDiff line numberDiff line change
@@ -74,12 +74,12 @@ task compileOpus {
7474
doLast {
7575
exec {
7676
workingDir "$projectDir/build/opus_build_linux"
77-
commandLine "/usr/bin/cmake", "$projectDir/src/opus"
77+
commandLine "cmake", "$projectDir/src/opus"
7878
}
7979

8080
exec {
8181
workingDir "$projectDir/build/opus_build_linux"
82-
commandLine "/usr/bin/make"
82+
commandLine "make"
8383
}
8484

8585
for(String abi : rootProject.ext.ABI_FILTERS.split(";")) {
@@ -95,7 +95,7 @@ task compileOpus {
9595

9696
exec {
9797
workingDir "$projectDir/build/opus_build_android_" + abi
98-
commandLine "/usr/bin/cmake", "--build", "."
98+
commandLine "cmake", "--build", "."
9999
}
100100

101101
copy {

0 commit comments

Comments
 (0)