The makefile is trying to install the systemd wrapper on all platforms even if
it isn't built.
This is from the current build haproxy-ss-20150422 as well as haproxy-1.5.11.
Makefile has this:
install-bin: haproxy haproxy-systemd-wrapper
install -d "$(DESTDIR)$(SBINDIR)"
install haproxy "$(DESTDIR)$(SBINDIR)"
install haproxy-systemd-wrapper "$(DESTDIR)$(SBINDIR)"
The easy soltuion for non-linux systems is drop it to this:
install-bin: haproxy
install -d "$(DESTDIR)$(SBINDIR)"
install haproxy "$(DESTDIR)$(SBINDIR)"
Perhaps makefile could be properly fixed?
Thanks,
-tim