diff options
author | Mike Frysinger <vapier@gentoo.org> | 2007-05-05 05:13:15 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2007-05-05 05:13:15 +0000 |
commit | 58de2aea8e7066c88cb8b6e630b52f68d8cad426 (patch) | |
tree | 481720f45e285a258000a5d44d1e2274e1d67815 /sys-devel/crossdev | |
parent | Marked ~hppa too. (diff) | |
download | historical-58de2aea8e7066c88cb8b6e630b52f68d8cad426.tar.gz historical-58de2aea8e7066c88cb8b6e630b52f68d8cad426.tar.bz2 historical-58de2aea8e7066c88cb8b6e630b52f68d8cad426.zip |
use /etc/init.d/functions.sh rather than /sbin/functions.sh
Package-Manager: portage-2.1.2.5
Diffstat (limited to 'sys-devel/crossdev')
-rwxr-xr-x | sys-devel/crossdev/files/crossdev | 4 | ||||
-rwxr-xr-x | sys-devel/crossdev/files/crossdev-stable | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/sys-devel/crossdev/files/crossdev b/sys-devel/crossdev/files/crossdev index 0757cbb238f1..b9eacbebcb13 100755 --- a/sys-devel/crossdev/files/crossdev +++ b/sys-devel/crossdev/files/crossdev @@ -1,7 +1,7 @@ #!/bin/bash # Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-devel/crossdev/files/crossdev,v 1.92 2007/05/05 01:08:50 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-devel/crossdev/files/crossdev,v 1.93 2007/05/05 05:12:12 vapier Exp $ cd / umask 0022 #159111 @@ -11,7 +11,7 @@ if [[ ${ROOT:-/} != "/" ]] ; then exit 2 fi -source /sbin/functions.sh || exit 1 +source /etc/init.d/functions.sh || exit 1 esyslog() { :; } die() { echo diff --git a/sys-devel/crossdev/files/crossdev-stable b/sys-devel/crossdev/files/crossdev-stable index 6255d6626999..f715d5da094d 100755 --- a/sys-devel/crossdev/files/crossdev-stable +++ b/sys-devel/crossdev/files/crossdev-stable @@ -1,7 +1,7 @@ #!/bin/bash # Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-devel/crossdev/files/crossdev-stable,v 1.1 2007/02/17 13:51:09 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-devel/crossdev/files/crossdev-stable,v 1.2 2007/05/05 05:12:12 vapier Exp $ cd / umask 0022 #159111 @@ -11,7 +11,7 @@ if [[ ${ROOT:-/} != "/" ]] ; then exit 2 fi -source /sbin/functions.sh || exit 1 +source /etc/init.d/functions.sh || exit 1 esyslog() { :; } die() { echo |