./configure: 123: Syntax error: Bad fd number"
While compiling fftv I got a strange error.
The fix for this is:
sudo mv /bin/sh /bin/sh.bkp
sudo ln -s /bin/bash /bin/sh
./configure: 123: Syntax error: Bad fd number"
The fix for this is:
sudo mv /bin/sh /bin/sh.bkp
sudo ln -s /bin/bash /bin/sh
great ! it worked !! solved my problem. thanks a lot :)
ReplyDeleteyeah that work for me too, thank you for share the solution !! :D
ReplyDeleteexcellent! wish i had seen this before wasting an hour trying to figure it out! Thanks!!!
ReplyDeleteWon't the following be easier in many cases ?
ReplyDeleteChange first line of configure script from
#! /bin/sh
to
#! /bin/bash
or to wherever bash is.
In that way you have to change in every script.
ReplyDelete