Can someone help me figure out why I can't run the ../configure part of the setup?
Opened this issue · 2 comments
I'm new to this...
I get to that part in the setup and it tells me configure not found or permission denied.
I think I did everything right up to there but evidently not.
Any help would be appreciated.
If it tells you configure permission denied that means this project did not setup file permissions. To make this work run:
chmod +x ../configure
But through this I also found that
../configure: line 1: syntax error near unexpected token `$'\r''
To fix the syntax error near unexpected token do:
mv ../configure ../configure1
sed $'s/\r$//' < ../configure1 > ../configure
chmod +x ../configure
I will create a new commit to setup file permissions and make ../configure data into raw text ASCII to fix these two problems.
I created a new commit to setup file permissions and made ../configure data into raw text ASCII that fixed these two problems. All should be done is repeat the process again. Reply if you can run the ../configure part of the setup after redoing all the steps again.