Author Topic: execution rights are missing in RC2 Source .tgz  (Read 4553 times)

Offline TheTuxKeeper

  • Regular
  • ***
  • Posts: 293
  • daniel2000
execution rights are missing in RC2 Source .tgz
« 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
« Last Edit: October 26, 2005, 02:02:03 pm by daniel2000 »
Nightly builds for openSUSE

Bloop

  • Guest
Re: execution rights are missing in RC2 Source .tgz
« Reply #1 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