The runuser symlink used to depend on su being enabled, but a refactoring broke that. So if you build with runuser enabled but not su, you end up with a broken symlink. Rework the logic so it works in both cases. Signed-off-by: Mike Frysinger <vapier@xxxxxxxxxx> --- v2 - use srcdir to fix out-of-tree building bash-completion/Makemodule.am | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/bash-completion/Makemodule.am b/bash-completion/Makemodule.am index 271a6db..d65cc8f 100644 --- a/bash-completion/Makemodule.am +++ b/bash-completion/Makemodule.am @@ -154,7 +154,11 @@ endif if BUILD_RUNUSER install-data-hook-bashcomp-runuser:: +if BUILD_SU ln -sf su $(DESTDIR)$(bashcompletiondir)/runuser +else + cp $(top_srcdir)/bash-completion/su $(DESTDIR)$(bashcompletiondir)/runuser +endif INSTALL_DATA_HOOKS += install-data-hook-bashcomp-runuser endif -- 2.1.2 -- To unsubscribe from this list: send the line "unsubscribe util-linux" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html