replaced "which" by "type -P"
authorAndres Loeh <kosmikus@gentoo.org>
Tue, 13 Mar 2007 12:02:04 +0000 (12:02 +0000)
committerAndres Loeh <kosmikus@gentoo.org>
Tue, 13 Mar 2007 12:02:04 +0000 (12:02 +0000)
eclass/ghc-package.eclass
eclass/haskell-cabal.eclass

index 1aa4db011dd3956123135bb3d9aea67b740465b3..cdc3da120cc63cf21438fe62a34a8a8ec5f69e52 100644 (file)
@@ -1,6 +1,6 @@
 # Copyright 1999-2004 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/ghc-package.eclass,v 1.21 2007/03/11 15:53:31 kolmodin Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/ghc-package.eclass,v 1.22 2007/03/13 12:02:04 kosmikus Exp $
 #
 # Author: Andres Loeh <kosmikus@gentoo.org>
 # Maintained by: Haskell herd <haskell@gentoo.org>
@@ -16,12 +16,12 @@ PATH="/usr/bin:/opt/ghc/bin:${PATH}"
 # for later configuration using environment variables/
 # returns the name of the ghc executable
 ghc-getghc() {
-       echo "$(which ghc)"
+       type -P ghc
 }
 
 # returns the name of the ghc-pkg executable
 ghc-getghcpkg() {
-       echo "$(which ghc-pkg)"
+       type -P ghc-pkg
 }
 
 # returns the name of the ghc-pkg binary (ghc-pkg
index 3996a1213542ede712bd20dfc5292c98244c23d5..8826a03bffcae1f20981a2bd48ce1164275fdd22 100644 (file)
@@ -1,6 +1,6 @@
 # Copyright 1999-2006 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/haskell-cabal.eclass,v 1.9 2007/01/15 13:58:13 kosmikus Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/haskell-cabal.eclass,v 1.10 2007/03/13 12:02:04 kosmikus Exp $
 #
 # Original authors: Andres Loeh <kosmikus@gentoo.org>
 #                   Duncan Coutts <dcoutts@gentoo.org>
@@ -173,7 +173,7 @@ cabal-pkg() {
        local err
 
        if [[ -n ${CABAL_HAS_LIBRARIES} ]]; then
-               sed -i "s|$(ghc-getghcpkg)|$(which true)|" .setup-config
+               sed -i "s|$(ghc-getghcpkg)|$(type -P true)|" .setup-config
                ./setup register || die "setup register failed"
                if [[ -f .installed-pkg-config ]]; then
                        ghc-setup-pkg .installed-pkg-config