I think I know what the problem is: the problem is with mv.
Apparently, autotools (the program suite that generates configure
files) seems to be fixed on the fact that mv has an -f option that
works just like rm -f. However, Plan 9 mv doesn't, so mv thinks -f is
a file and will try to make the output a directory. That's bad.
Anyways, I modified configure and move-if-something (used by some
configure files) to remove -f. I'll add -f to Plan 9 mv as a no-op
later.
On Jan 20, 2008, at 6:50 PM, Pietro Gagliardi wrote:
% gnu/gsh
# make -f Makefile
make: No rule for target all-am. Stop.
# grep all-am Makefile
all-am: ...
On Jan 20, 2008, at 6:47 PM, [EMAIL PROTECTED] wrote:
Didn't work
if I'm not mistaken make is looking for makefile and not Makefile
or the oposite, something like that.