diff options
author | Danny van Dyk <kugelfang@gentoo.org> | 2004-09-15 23:10:21 +0000 |
---|---|---|
committer | Danny van Dyk <kugelfang@gentoo.org> | 2004-09-15 23:10:21 +0000 |
commit | 8c10135d6ba708afdf1cd267b845ae9007dbd9c5 (patch) | |
tree | 19825e28995b8b249544648382b351eec2bc99ed /eclass/gst-plugins.eclass | |
parent | cleanup (diff) | |
download | historical-8c10135d6ba708afdf1cd267b845ae9007dbd9c5.tar.gz historical-8c10135d6ba708afdf1cd267b845ae9007dbd9c5.tar.bz2 historical-8c10135d6ba708afdf1cd267b845ae9007dbd9c5.zip |
Using eutils:get_libdir() now instead of hardcoded [/usr][/...]/lib
Diffstat (limited to 'eclass/gst-plugins.eclass')
-rw-r--r-- | eclass/gst-plugins.eclass | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/eclass/gst-plugins.eclass b/eclass/gst-plugins.eclass index 6ec6fbf97661..13e205679c4c 100644 --- a/eclass/gst-plugins.eclass +++ b/eclass/gst-plugins.eclass @@ -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/eclass/gst-plugins.eclass,v 1.18 2004/08/08 15:30:35 foser Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/gst-plugins.eclass,v 1.19 2004/09/15 23:10:21 kugelfang Exp $ # Author : foser <foser@gentoo.org> @@ -14,6 +14,8 @@ # Gentoo developers responsible for gstreamer <gnome@gentoo.org>, the application developer # or the gstreamer team. +inherit eutils + ECLASS="gst-plugins" INHERITED="$INHERITED $ECLASS" @@ -138,8 +140,8 @@ gst-plugins_src_unpack() { # Link with the syswide installed interfaces if needed gst-plugins_find_plugin_dir - sed -e "s:\$(top_builddir)/gst-libs/gst/libgstinterfaces:/usr/lib/libgstinterfaces:" \ - -e "s:\${top_builddir}/gst-libs/gst/libgstinterfaces:/usr/lib/libgstinterfaces:" \ + sed -e "s:\$(top_builddir)/gst-libs/gst/libgstinterfaces:/usr/$(get_libdir)/libgstinterfaces:" \ + -e "s:\${top_builddir}/gst-libs/gst/libgstinterfaces:/usr/$(get_libdir)/libgstinterfaces:" \ -i Makefile.in cd ${S} |