diff options
author | Steve Dibb <beandog@gentoo.org> | 2008-05-15 18:14:41 +0000 |
---|---|---|
committer | Steve Dibb <beandog@gentoo.org> | 2008-05-15 18:14:41 +0000 |
commit | 17a7248674df31d3786af647ec82c8242b924680 (patch) | |
tree | 97c3766d3a0a5fcde1998be364bcd43d122d9d9f /media-sound/alsa-utils | |
parent | Marked ~hppa (bug #221989). (diff) | |
download | gentoo-2-17a7248674df31d3786af647ec82c8242b924680.tar.gz gentoo-2-17a7248674df31d3786af647ec82c8242b924680.tar.bz2 gentoo-2-17a7248674df31d3786af647ec82c8242b924680.zip |
Use $ROOT for install of modprobe file
(Portage version: 2.1.5)
Diffstat (limited to 'media-sound/alsa-utils')
-rw-r--r-- | media-sound/alsa-utils/ChangeLog | 5 | ||||
-rw-r--r-- | media-sound/alsa-utils/alsa-utils-1.0.16-r2.ebuild | 4 |
2 files changed, 6 insertions, 3 deletions
diff --git a/media-sound/alsa-utils/ChangeLog b/media-sound/alsa-utils/ChangeLog index 5dd854f40858..6952980d93fc 100644 --- a/media-sound/alsa-utils/ChangeLog +++ b/media-sound/alsa-utils/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for media-sound/alsa-utils # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/alsa-utils/ChangeLog,v 1.234 2008/05/15 18:03:00 beandog Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/alsa-utils/ChangeLog,v 1.235 2008/05/15 18:14:41 beandog Exp $ + + 15 May 2008; Steve Dibb <beandog@gentoo.org> alsa-utils-1.0.16-r2.ebuild: + Use $ROOT for install of modprobe file *alsa-utils-1.0.16-r2 (15 May 2008) diff --git a/media-sound/alsa-utils/alsa-utils-1.0.16-r2.ebuild b/media-sound/alsa-utils/alsa-utils-1.0.16-r2.ebuild index d80733cd823f..e932e9edb297 100644 --- a/media-sound/alsa-utils/alsa-utils-1.0.16-r2.ebuild +++ b/media-sound/alsa-utils/alsa-utils-1.0.16-r2.ebuild @@ -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/media-sound/alsa-utils/alsa-utils-1.0.16-r2.ebuild,v 1.1 2008/05/15 18:03:00 beandog Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/alsa-utils/alsa-utils-1.0.16-r2.ebuild,v 1.2 2008/05/15 18:14:41 beandog Exp $ WANT_AUTOMAKE="latest" WANT_AUTOCONF="latest" @@ -67,7 +67,7 @@ pkg_preinst() { if [[ -a /etc/modules.d/alsa ]] && [[ ! -a /etc/modprobe.d/alsa ]]; then elog "Moving old alsa configuration in modules.d to new" elog "location in modprobe.d in /etc/" - mv /etc/modules.d/alsa /etc/modprobe.d/alsa + mv "${ROOT}/etc/modules.d/alsa" "${ROOT}/etc/modprobe.d/alsa" fi } |