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/eet/eet-20090313.ebuild

    r196 r264  
    2929        # for autoreconf 
    3030        touch README 
    31         eautoreconf || die "Autoreconf failed" 
     31        eautoreconf 
    3232} 
    3333 
    3434src_compile() { 
    35         local myconf 
    36  
    37         myconf="${myconf} \ 
    38                 $(use_enable ssl openssl) 
    39                 $(use_enable ssl cipher) 
    40                 $(use_enable ssl signature) 
    41                 $(use_enable gnutls gnutls) 
    42                 --disable-old-eet-file-format" 
    43  
    44         econf ${myconf} || die "Configuration failed" 
    45         emake || die "Make failed" 
     35        econf \ 
     36                $(use_enable ssl openssl) \ 
     37                $(use_enable ssl cipher) \ 
     38                $(use_enable ssl signature) \ 
     39                $(use_enable gnutls gnutls) \ 
     40                --disable-old-eet-file-format \ 
     41                || die 
     42        emake || die 
    4643} 
    4744