Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

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

Open
seanc98 opened this issue May 18, 2023 · 2 comments

Comments

@seanc98
Copy link

seanc98 commented May 18, 2023

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.

@CoderRC
Copy link
Owner

CoderRC commented May 21, 2023

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
Copy link
Owner

CoderRC commented May 30, 2023

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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants