Topic: config-host: file not found

Ok, so I'm in the "make i486" part of building the cross-tools (ttylinux-src-9.1), and I get this error:

../_scripts/generic-linux-gnu.sh: line 1204: .: config-host: file not found

Why? How can I solve this problem?

Greetings from Finland
-kk

Re: config-host: file not found

Your host may not be using bash for /bin/sh which is probably a symlink to some shell other than bash. The last time I heard about this, it was fixed on a Fedora host system by changing the first line of the shell scripts in the _scripts/ directory. They all have something like

     #!/bin/sh -eu

on the first line. Change it to

     #!/bin/bash

You might need to make the scripts writable with "chmod 755 <file>.sh".

Re: config-host: file not found

That did it. Thanks!

Greetings from Finland
-kk