This appears to be caused by by having DOS style line endings in the configure script.
You should be able to use the dos2unix command or alternatively, the tr command:
$ tr -d "\15\32" < configure > configure.new$ chmod +x configure
$ mv configure.new configure
Original Post Here
No comments:
Post a Comment