Den Link von sh auf bash habe ich! Es funktioniert trotzdem
nicht.
Wieso ist eigentlich die erste Zeile der configure
auskommentiert?
(’#!/bin/sh’). Zumindest scheint es mir so.
Fragen wir mal „man bash“
Frage 1 = /#
In a non-interactive shell, or an interactive shell in
which the interactive\_comments option to the shopt builtin
is enabled (see SHELL BUILTIN COMMANDS below), a word
beginning with # causes that word and all remaining char
acters on that line to be ignored. An interactive shell
without the interactive\_comments option enabled does not
allow comments. The interactive\_comments option is on by
default in interactive shells
Okay es handelt sich bei dem # Zeichen um die Einleitung für einen Kommentar.
Soweit so gut:smile:
Frage 2 = /#!
If the program is a file beginning with #!, the remainder
of the first line specifies an interpreter for the pro
gram. The shell executes the specified interpreter on
operating systems that do not handle this executable for
mat themselves. The arguments to the interpreter consist
of a single optional argument following the interpreter
name on the first line of the program, followed by the
name of the program, followed by the command arguments, if
any.
Aha das wirds wohl sein.
use the source luke
polarbear