From: David C. <bus...@ho...> - 2004-03-11 20:30:15
|
My solution was to replace the shipped broken version of expr with a working one. I downloaded sh-utils from the gnu mirrors and ./configure --host=powerpc make then copied the expr binary to /bin (don't do a make install, the gnu uname is broken on mac os x) --David Carne -- It seems that PPC OS X computers seem to have some troubles with the kernel -- version I assume due to big endian numbers. This is how I was able to bypass -- the problem: -- The error I recieve is: -- "KERNELRELEASE "2.4.24-uc0" exceeds 64 characters" -- If you receive that warning go into the Makefile in the root directory of the -- linux source and replace: -- @expr length "$(KERNELRELEASE)" \<= $(uts_len) > /dev/null || \ -- with: -- @expr `expr "$(KERNELRELEASE)" : '.*'` \<= $(uts_len) > /dev/null || \ Cheers, Jeff _________________________________________________________________ MSN Premium includes powerful parental controls and get 2 months FREE* http://join.msn.com/?pgmarket=en-ca&page=byoa/prem&xAPID=1994&DI=1034&SU=http://hotmail.com/enca&HL=Market_MSNIS_Taglines |