diff options
author | 2009-10-08 19:54:40 +0000 | |
---|---|---|
committer | 2009-10-08 19:54:40 +0000 | |
commit | 173f8f3d1a80553830c12e52ca62e6b11f4f74fc (patch) | |
tree | 9cd71d12e5f5f8f464f3a543ee605ab789fd2f6f /eclass | |
parent | fixed modprobe.d file (.conf extension) + removed old version. (diff) | |
download | historical-173f8f3d1a80553830c12e52ca62e6b11f4f74fc.tar.gz historical-173f8f3d1a80553830c12e52ca62e6b11f4f74fc.tar.bz2 historical-173f8f3d1a80553830c12e52ca62e6b11f4f74fc.zip |
add hppa*-hpux support to get_libname
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/multilib.eclass | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/eclass/multilib.eclass b/eclass/multilib.eclass index 9a7e1d2b6182..23c6d09f3060 100644 --- a/eclass/multilib.eclass +++ b/eclass/multilib.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/multilib.eclass,v 1.74 2009/06/14 11:40:14 grobian Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/multilib.eclass,v 1.75 2009/10/08 19:54:40 grobian Exp $ # @ECLASS: multilib.eclass # @MAINTAINER: @@ -532,6 +532,7 @@ get_libname() { *-darwin*) libname="dylib";; *-aix*) libname="a";; *-mint*) libname="irrelevant";; + hppa*-hpux*) libname="sl";; *) libname="so";; esac |