diff options
author | Matthias Schwarzott <zzam@gentoo.org> | 2007-03-13 09:48:02 +0000 |
---|---|---|
committer | Matthias Schwarzott <zzam@gentoo.org> | 2007-03-13 09:48:02 +0000 |
commit | 89ff6f1396a34dc9f0e0473ef7a6e22f4ccecba1 (patch) | |
tree | cc531bb6c5e9df0673f883e564fa606d07c9b3af /eclass/vdr-plugin.eclass | |
parent | Version bump. (diff) | |
download | historical-89ff6f1396a34dc9f0e0473ef7a6e22f4ccecba1.tar.gz historical-89ff6f1396a34dc9f0e0473ef7a6e22f4ccecba1.tar.bz2 historical-89ff6f1396a34dc9f0e0473ef7a6e22f4ccecba1.zip |
Replaced external program which by bash-internal type -p.
Diffstat (limited to 'eclass/vdr-plugin.eclass')
-rw-r--r-- | eclass/vdr-plugin.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/vdr-plugin.eclass b/eclass/vdr-plugin.eclass index 18957cbfd347..fbea83ae2ec7 100644 --- a/eclass/vdr-plugin.eclass +++ b/eclass/vdr-plugin.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/vdr-plugin.eclass,v 1.42 2007/02/17 01:07:48 zzam Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/vdr-plugin.eclass,v 1.43 2007/03/13 09:48:02 zzam Exp $ # # Author: # Matthias Schwarzott <zzam@gentoo.org> @@ -356,7 +356,7 @@ vdr-plugin_src_install() { if [[ -f ${VDR_CHECKSUM_DIR}/header-md5-vdr ]]; then newins ${VDR_CHECKSUM_DIR}/header-md5-vdr header-md5-${PN} else - if which md5sum >/dev/null 2>&1; then + if type -p md5sum >/dev/null 2>&1; then cd ${S} ( cd ${VDR_INCLUDE_DIR} |