Date: Fri, 5 Jun 1998 11:39:40 +0300 (IDT) From: Eli Zaretskii To: lheller AT dejanews DOT com cc: djgpp AT delorie DOT com Subject: Re: Trouble with LFN In-Reply-To: <6l7i4g$35d$1@nnrp1.dejanews.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Precedence: bulk On Fri, 5 Jun 1998 lheller AT my-dejanews DOT com wrote: > Nor can I > build sharutils-4.2, attempting to run configure results in: > bash: (null): Invalid argument (EINVAL) > [exited with 126] This could be a totally different problem. One reason might be that you don't have the sh.exe symlink to bash.exe. Another possibility is that your TMPDIR environmenet variable is undefined, or points to a non-existent directory. > When set LFN=n, emacs runs as expected and configure at least starts > to run (the are other problems there though). configure scripts needs some tweaking before they run on DOS/Windows. In particular, you need to set PATH_SEPARTOR=: and PATH_EXPAND=y before you run the script. Another change is to replace "test -f prog" with "test -x prog", since on DOS/Windows the file is actually prog.exe (test -x knows that, but test -f doesn't).