Hi!
The install path for the adjtimex binary is hardcoded to /sbin in the Makefile which breaks compatibility with any build system that doesn't use fakeroot for installation (for example buildroot or openwrt).
I worked around this by patching the Makefile.in to honor the exec-prefix as it was in earlier versions.
In addition honoring the variable DESTDIR when running make install would be nice as this is how most buildsystems that come with autotool helpers try to set the install directory (which should be prepended before the set prefix or exec_prefix).
This would give the most flexibility
- Jakob
Hi!
The install path for the adjtimex binary is hardcoded to /sbin in the Makefile which breaks compatibility with any build system that doesn't use fakeroot for installation (for example buildroot or openwrt).
I worked around this by patching the Makefile.in to honor the exec-prefix as it was in earlier versions.
In addition honoring the variable DESTDIR when running make install would be nice as this is how most buildsystems that come with autotool helpers try to set the install directory (which should be prepended before the set prefix or exec_prefix).
This would give the most flexibility
- Jakob