You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Oct 23, 2024. It is now read-only.
mv: cannot stat '/home/frank/src/mesos/build/src/mesos-*.jar': No such file or directory
Makefile:12: recipe for target 'debian' failed
make: *** [debian] Error 1
The problem is with the jars function in build_mesos
function jars {
mkdir -p usr/share/java/
if [[ -d "$build_dir"/src/java/target ]]
then mv "$build_dir"/src/java/target/mesos-*.jar usr/share/java # Mesos >= 0.18.1
else mv "$build_dir"/src/mesos-*.jar usr/share/java # Mesos < 0.18.1
fi
}
The text was updated successfully, but these errors were encountered:
I configured and built Mesos by running
../configure --disable-java
and when I runit fails because it cannot find the mesos jars.
The problem is with the
jars
function inbuild_mesos
The text was updated successfully, but these errors were encountered: