Date: Sun, 23 May 1999 12:21:06 +0300 (IDT) From: Eli Zaretskii X-Sender: eliz AT is To: Martin Str|mberg cc: snowball3 AT bigfoot DOT com, DJGPP-WORKERS Subject: Re: Bash 2.03 final beta available In-Reply-To: <199905221017.MAA01267@father.ludd.luth.se> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Reply-To: djgpp-workers AT delorie DOT com X-Mailing-List: djgpp-workers AT delorie DOT com X-Unsubscribes-To: listserv AT delorie DOT com Precedence: bulk On Sat, 22 May 1999, Martin Str|mberg wrote: > make.exe: *** No rule to make target `lib/readline/terminal.c', > needed by `lib/readline/libreadline.a'. Stop. Since Mark couldn't figure it out, it might be useful to add -d to the Make command line, redirect stdout to a file, and look into the relevant parts of it to try to understand why does it fail. > 2. ./configure seems to be wanting to use "getconf". Do you see this > too? What is "getconf"? It's a Linux tool that return system-configuration details. To get it to work with DJGPP, create a script like this: #!/bin/sh exit 0 and put it somewhere on your PATH. Then the error messages should go away.