From mboxrd@z Thu Jan 1 00:00:00 1970 Mime-Version: 1.0 (Apple Message framework v753) In-Reply-To: <753F4A04-C113-49F9-8CC7-8C44BD10889D@mac.com> References: <97e9aaea995b8830e3c4748832e3a7ef@yourdomain.dom> <753F4A04-C113-49F9-8CC7-8C44BD10889D@mac.com> Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Message-Id: Content-Transfer-Encoding: 7bit From: Pietro Gagliardi Subject: Re: [9fans] Building GCC Date: Mon, 21 Jan 2008 09:09:13 -0500 To: Fans of the OS Plan 9 from Bell Labs <9fans@cse.psu.edu> Topicbox-Message-UUID: 32d0fe40-ead3-11e9-9d60-3106f5b1d025 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, benavento@gmail.com wrote: > >>> Didn't work >> >> if I'm not mistaken make is looking for makefile and not Makefile >> or the oposite, something like that. >> >