Show
Ignore:
Timestamp:
03/23/09 02:44:51 (3 years ago)
Author:
max_posedon
Message:

Apply review alonbl's patches. Thanks, alonbl!

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • openmoko/trunk/openmoko-target/dev-libs/eina/eina-20090313.ebuild

    r196 r264  
    1818 
    1919src_compile() { 
    20         local myconf 
    21  
    22         myconf="${myconf} 
    23                 $(use_enable mmx  cpu-mmx) \ 
    24                 $(use_enable sse  cpu-sse) \ 
    25                 $(use_enable sse2 cpu-sse2) \ 
    26                 $(use_enable altivec cpu-altivec) \ 
    27                 $(use_enable threads pthread) \ 
    28                 $(use_enable doc)" 
    29  
    30         econf $myconf || die "econf failed" 
    31         emake || die "emake failed" 
     20        econf \ 
     21                $(use_enable mmx  cpu-mmx) \ 
     22                $(use_enable sse  cpu-sse) \ 
     23                $(use_enable sse2 cpu-sse2) \ 
     24                $(use_enable altivec cpu-altivec) \ 
     25                $(use_enable threads pthread) \ 
     26                $(use_enable doc) \ 
     27                || die 
     28        emake || die 
    3229}