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 | 96f2b25a9629be48a0289bf49c3acd1de446626c (patch) | |
tree | f5916033c9b0bd9d3ca6709cfa1d39d7afc7b07a /eclass/motif.eclass | |
parent | cleanup (diff) | |
download | gentoo-2-96f2b25a9629be48a0289bf49c3acd1de446626c.tar.gz gentoo-2-96f2b25a9629be48a0289bf49c3acd1de446626c.tar.bz2 gentoo-2-96f2b25a9629be48a0289bf49c3acd1de446626c.zip |
Using eutils:get_libdir() now instead of hardcoded [/usr][/...]/lib
Diffstat (limited to 'eclass/motif.eclass')
-rw-r--r-- | eclass/motif.eclass | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/eclass/motif.eclass b/eclass/motif.eclass index 7de9cf6c036e..af903ad9d9e7 100644 --- a/eclass/motif.eclass +++ b/eclass/motif.eclass @@ -1,12 +1,14 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/motif.eclass,v 1.3 2004/06/25 00:39:48 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/motif.eclass,v 1.4 2004/09/15 23:10:21 kugelfang Exp $ # # Heinrich Wednel <lanius@gentoo.org> +inherit eutils + ECLASS=motif INHERITED="$INHERITED $ECLASS" LESSTIF_INC_DIR="/usr/X11R6/include/lesstif" -LESSTIF_LIB_DIR="/usr/X11R6/lib/lesstif" +LESSTIF_LIB_DIR="/usr/X11R6/$(get_libdir)/lesstif" LESSTIF_BIN_DIR="/usr/X11R6/bin/lesstif" |