"Ulf Samuelsson" <[EMAIL PROTECTED]> wrote:
> I realized that the path was a problem, and I removed the "." from the PATH
> in ".bashrc" but the problems remained.
> The makefile seems to call "./rm" at some stage, and I am screwed
> Further checking now shows that the "." remains in the PATH,
> so maybe I have to logout-login. .
>
> I think the best approach is that the configure script
> figures out what the path is to these tools and uses the path.
>
> Something like this is used in the buildroot system for other things:
> ifndef HOST_RM
> HOST_RM:=rm
> endif
> HOST_RM:=$(shell $(CONFIG_SHELL) -c "which $(HOST_RM)" || type -p $(HOST_RM) 
> || echo rm)

No.  Just fix your PATH (having "." too early is a security risk, btw),
and you'll be fine.


_______________________________________________
Bug-coreutils mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/bug-coreutils

Reply via email to