"Hualin" <(E-Mail Removed)> wrote:
>I used chmod a+x configure. Anyone should be able to excute it.
Do "/bin/ls -l ./configure" and verify that it is in fact
executable. The permission string should look something like
"-rwxr-xr-x".
The configure program should be a shell script. Take a look at
it with a text editor, and note the first line, which might look
something like this:
#!/bin/sh
If the command in that first line is not executable, you will
get an error message. Is possible that the script has a
different path or a different shell than whatever your system
has?
As a last resort... lets follow a logical approach and
narrow down what is and what is not working. Do this:
$ mv ./configure ./configure.orig
$ echo "echo \"This is my configure.\"" > ./configure
$ chmod 755 ./configure
$ ./configure
That should result in "This is my configure." being output to the
screen. If so, do "mv configure.orig configure" to restore the
original. If not, find out why. (Post your results here and
we'll think of ways to figure out what is going on.)
--
Floyd L. Davidson <http://web.newsguy.com/floyd_davidson>
Ukpeagvik (Barrow, Alaska)
(E-Mail Removed)