Author Topic: Make Update No File Found  (Read 6217 times)

Anonymous

  • Guest
Make Update No File Found
« on: March 03, 2005, 05:13:48 am »
Compiling goes fine for me, but when I try to make -f Makefile.unix update it gives me this:
Code
[bana@localhost CodeBlocks-1.0-beta5]$ make -f Makefile.unix update
sh update
: command not found
: command not found
Compressing core UI resources
: No such file or directory
: No such file or directory
Compressing plugins UI resources
: No such file or directory
: No such file or directory
: No such file or directory
: No such file or directory
: No such file or directory
: No such file or directory
: command not found
: command not found
Copying files
: No such file or directory
: No such file or directory
: No such file or directory
: No such file or directory
: No such file or directory
: No such file or directory
: No such file or directory
: No such file or directory
: No such file or directory
: No such file or directory
: No such file or directory
: No such file or directory
: No such file or directory
: No such file or directory
: No such file or directory
: No such file or directory
: No such file or directory
: No such file or directory
: No such file or directory
: No such file or directory
Stripping debug info from output tree
': No such file*.exe
': No such file*.so
': No such fileshare/CodeBlocks/plugins/*.so
: command not found
Creating launch-scripts

Yet when I did each command by hand (zip -j9 source/blah blah/blah etc...) it worked fine and I can run CodeBlocks. Kinda weird...

ilkapo

  • Guest
Make Update No File Found
« Reply #1 on: March 16, 2005, 05:28:42 pm »
I has the same problem, the "error" is in the "update" script. I resolve it with the "dos2unix" command:

Code
dos2unix -n update update.unix


then make it runnable:

Code
chmod +x update.unix


and finally I can execute:

Code
./update.unix


Now I can use Code:Block with Fedora Core 3 ! ! !