This looks similar to #324, but perhaps with a different cause.
I used a custom PREFIX for building and installing bees:
PREFIX=/usr/local/stow/bees make -j$(nproc)
sudo PREFIX=/usr/local/stow/bees make install
But when trying to run the systemd service, it failed with
Nov 04 17:06:17 myhost beesd[2187482]: realpath: //usr/lib/bees/bees: No such file or directory
Nov 04 17:06:17 myhost beesd[2187477]: ERROR: Missing 'bees' agent
There was another minor error that /lib/systemd/system/beesd@.service didn't have the proper prefix in ExecStart (but that was easy to fix). So I guess the problem might be caused by some other place not respecting the PREFIX variable.
This looks similar to #324, but perhaps with a different cause.
I used a custom
PREFIXfor building and installing bees:PREFIX=/usr/local/stow/bees make -j$(nproc) sudo PREFIX=/usr/local/stow/bees make installBut when trying to run the
systemdservice, it failed withThere was another minor error that
/lib/systemd/system/beesd@.servicedidn't have the proper prefix inExecStart(but that was easy to fix). So I guess the problem might be caused by some other place not respecting thePREFIXvariable.