libmingw32_extended icon indicating copy to clipboard operation
libmingw32_extended copied to clipboard

Can someone help me figure out why I can't run the ../configure part of the setup?

Open seanc98 opened this issue 2 years ago • 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.

seanc98 avatar May 18 '23 23:05 seanc98

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.

CoderRC avatar May 21 '23 15:05 CoderRC

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.

CoderRC avatar May 30 '23 22:05 CoderRC