|
From: Andrew <ni...@se...> - 2010-08-29 19:12:17
|
29.08.2010 21:30, Stefaan Van Dooren пишет: > I'm trying to setup the new uBering4 (alpha) on ubuntu 10.04 LTS, but having some difficulties. > I checked out cvs, modified make/MasterInclude.mk to point to the right gcc and tried to run ./buildtool.pl build buildenv. > > This gave me an error about an unknown flag or something. Removing "-fno-stack-protector" from source/buildenv/buildtool.mk solved this problem. > > But now I'm stuck at this error : > > # > # Hack things to use the correct shared lib loader > # > (cd /home/stefaan/leaf/src/bering-uclibc4/buildtool/source/buildenv/gcc-3.3.3; set -e; export LIST=`grep -lr -- "-dynamic-linker.*\.so[\.0-9]*" *`;\ > if [ -n "$LIST" ] ; then \ > perl -i -p -e "s,-dynamic-linker.*\.so[\.0-9]*},\ > -dynamic-linker /lib/ld-uClibc.so.0},;" $LIST; fi); > export: 3: gcc/FSFChangeLog.11: bad variable name > make: *** [/home/stefaan/leaf/src/bering-uclibc4/buildtool/source/buildenv/gcc-3.3.3/.gcc_build_hacks] Fout 2 > make: Map '/home/stefaan/leaf/src/bering-uclibc4/buildtool/source/buildenv' wordt verlaten > > My guess is, it has something todo with the grep instruction, but I'm not sure how to solve this. > > All help is welcome. > > Regards, > > Stefaan > ------------------------------------------------------------------------------ > Sell apps to millions through the Intel(R) Atom(Tm) Developer Program > Be part of this innovative community and reach millions of netbook users > worldwide. Take advantage of special opportunities to increase revenue and > speed time-to-market. Join now, and jumpstart your future. > http://p.sf.net/sfu/intel-atom-d2d > ------------------------------------------------------------------------ > leaf-user mailing list: lea...@li... > https://lists.sourceforge.net/lists/listinfo/leaf-user > Support Request -- http://leaf-project.org/ Try to add double brackets: export LIST="`grep -lr -- "-dynamic-linker.*\.so[\.0-9]*" *`"; |