Code::Blocks Forums

User forums => Help => Topic started by: TheTuxKeeper on October 26, 2005, 01:56:50 pm

Title: execution rights are missing in RC2 Source .tgz
Post by: TheTuxKeeper on October 26, 2005, 01:56:50 pm
I noticed that the execution rights for bootstrap, acinclude.m4 and src/update aren't set !!!

This is a problem for Linux user, it isn't possible to execute with "./"
 
Please fix it!

I also think the line ends are Windows-like, is this right ?

I executed for compiling RC2 these commmands before (only for Linux/BSD/Unix user):
Code
  dos2unix bootstrap acinclude.m4 configure.in src/update
  chmod a+x bootstrap acinclude.m4 src/update

Thank you and great job this Release Candidate !!!

Daniel
Title: Re: execution rights are missing in RC2 Source .tgz
Post by: Bloop on October 26, 2005, 02:59:05 pm
Hey !

You are right! Take a look at my post: http://forums.codeblocks.org/index.php/topic,1171.0.html

After extracting the archive preform this operation:

Code
find . -type f -and -not -name "*.cpp" -and -not -name "*.h" -and -not -name "*.png" -and -not -name "*.bmp" | sed "s/.*/\"\\0\"/" | xargs dos2unix

sh bootstrap
./configure
make
make install (as root)

You should be fine!

Regards Bloop