This issue pertains to ads-github-tools-0.3.3 (and probably all previous versions).
The configure script checks for three tools that aren't actually needed by the codebase: groupadd, useradd, and usermod. The checks for them should be removed.
As a workaround, the configure script can be invoked as follows:
$ GROUPADD=/usr/bin/true \
> USERADD=/usr/bin/true \
> USERMOD=/usr/bin/true \
> configure --prefix=/path/to/whatever ...
This issue pertains to
ads-github-tools-0.3.3(and probably all previous versions).The
configurescript checks for three tools that aren't actually needed by the codebase:groupadd,useradd, andusermod. The checks for them should be removed.As a workaround, the
configurescript can be invoked as follows: