diff options
author | Marc Hildebrand <zypher@gentoo.org> | 2004-11-05 15:22:43 +0000 |
---|---|---|
committer | Marc Hildebrand <zypher@gentoo.org> | 2004-11-05 15:22:43 +0000 |
commit | 0d2989fb6f812d2e29e57b29948682154bade411 (patch) | |
tree | fb2869b482bc1472f66f0a5f3823177e2640acbc /media-video/transcode | |
parent | Fixed insecure temp file creation as per bug #68407. stable on x86 and ppc (M... (diff) | |
download | gentoo-2-0d2989fb6f812d2e29e57b29948682154bade411.tar.gz gentoo-2-0d2989fb6f812d2e29e57b29948682154bade411.tar.bz2 gentoo-2-0d2989fb6f812d2e29e57b29948682154bade411.zip |
fixed missing §(get_libdir) stuff
Diffstat (limited to 'media-video/transcode')
-rw-r--r-- | media-video/transcode/transcode-0.6.13-r1.ebuild | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/media-video/transcode/transcode-0.6.13-r1.ebuild b/media-video/transcode/transcode-0.6.13-r1.ebuild index c10c583ae3c2..2d8158e2075f 100644 --- a/media-video/transcode/transcode-0.6.13-r1.ebuild +++ b/media-video/transcode/transcode-0.6.13-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-video/transcode/transcode-0.6.13-r1.ebuild,v 1.1 2004/11/05 08:33:57 zypher Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-video/transcode/transcode-0.6.13-r1.ebuild,v 1.2 2004/11/05 15:22:43 zypher Exp $ inherit libtool flag-o-matic eutils @@ -64,9 +64,9 @@ src_compile() { # --with-pvm3-include=${PVM_ROOT}/include" # Use the MPlayer libpostproc if present - [ -f ${ROOT}/usr/lib/libpostproc.a ] && \ + [ -f ${ROOT}/usr/$(get_libdir)/libpostproc.a ] && \ [ -f ${ROOT}/usr/include/postproc/postprocess.h ] && \ - myconf="${myconf} --with-libpostproc-builddir=${ROOT}/usr/lib" + myconf="${myconf} --with-libpostproc-builddir=${ROOT}/usr/$(get_libdir)" append-flags -DDCT_YUV_PRECISION=1 econf \ |