wok rev 14007

libvpx: fix typo
author Dominique Corbex <domcox@slitaz.org>
date Sun Feb 17 19:44:20 2013 +0100 (2013-02-17)
parents cca1658587e4
children 265504ab5023
files libvpx/receipt
line diff
     1.1 --- a/libvpx/receipt	Sun Feb 17 18:16:25 2013 +0100
     1.2 +++ b/libvpx/receipt	Sun Feb 17 19:44:20 2013 +0100
     1.3 @@ -15,13 +15,14 @@
     1.4  # Rules to configure and make the package.
     1.5  compile_rules()
     1.6  {
     1.7 -	./configure --enable-vp8 \
     1.8 +	./configure \
     1.9 +		--enable-vp8 \
    1.10  		--enable-runtime-cpu-detect \
    1.11  		--enable-postproc \
    1.12  		--enable-shared \
    1.13  		--enable-pic \
    1.14  		--disable-install-docs \
    1.15 -		--disable-install-srcs && 
    1.16 +		--disable-install-srcs &&
    1.17  	make && make DIST_DIR=$DESTDIR/usr install
    1.18  }
    1.19  
    1.20 @@ -30,5 +31,5 @@
    1.21  {
    1.22  	mkdir -p $fs/usr/lib
    1.23  	cp -a $install/usr/bin $fs/usr
    1.24 -	cp -a $install/usr/lib/*.so.* $fs/usr/lib
    1.25 +	cp -a $install/usr/lib/*.so* $fs/usr/lib
    1.26  }