# HG changeset patch # User Dominique Corbex # Date 1361126660 -3600 # Node ID 6d82665228b2f6723d8a42c65dde7a8d5e4aceb7 # Parent cca1658587e42c8e377ab56cc2632bcf969fda2d libvpx: fix typo diff -r cca1658587e4 -r 6d82665228b2 libvpx/receipt --- a/libvpx/receipt Sun Feb 17 18:16:25 2013 +0100 +++ b/libvpx/receipt Sun Feb 17 19:44:20 2013 +0100 @@ -15,13 +15,14 @@ # Rules to configure and make the package. compile_rules() { - ./configure --enable-vp8 \ + ./configure \ + --enable-vp8 \ --enable-runtime-cpu-detect \ --enable-postproc \ --enable-shared \ --enable-pic \ --disable-install-docs \ - --disable-install-srcs && + --disable-install-srcs && make && make DIST_DIR=$DESTDIR/usr install } @@ -30,5 +31,5 @@ { mkdir -p $fs/usr/lib cp -a $install/usr/bin $fs/usr - cp -a $install/usr/lib/*.so.* $fs/usr/lib + cp -a $install/usr/lib/*.so* $fs/usr/lib }