Mail Archives: djgpp/1998/06/05/04:39:57
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).
- Raw text -