convert `type -p` to `type -P` as noted by grobian (trunk r6410:6411) v2.1.2.4
authorZac Medico <zmedico@gentoo.org>
Mon, 16 Apr 2007 01:16:50 +0000 (01:16 -0000)
committerZac Medico <zmedico@gentoo.org>
Mon, 16 Apr 2007 01:16:50 +0000 (01:16 -0000)
svn path=/main/branches/2.1.2/; revision=6414

bin/ebuild.sh
bin/emerge-webrsync
bin/etc-update
bin/misc-functions.sh
bin/prepall
bin/prepstrip
bin/sed

index f9cc6b6f2f0a2e245c2df7117e216f1438d7ba40..92f75455c3635f4f49b275986f3dd9384e62a152 100755 (executable)
@@ -524,7 +524,7 @@ econf() {
 
                local TMP_CONFCACHE_DIR CONFCACHE_ARG
                if hasq confcache $FEATURES && ! hasq confcache $RESTRICT; then
-                       CONFCACHE="$(type -p confcache)"
+                       CONFCACHE="$(type -P confcache)"
                        if [ -z "${CONFCACHE}" ]; then
                                ewarn "disabling confcache, binary cannot be found"
                        else
@@ -762,7 +762,7 @@ dyn_clean() {
                return 1
        fi
 
-       if type -p chflags &>/dev/null; then
+       if type -P chflags > /dev/null ; then
                chflags -R noschg,nouchg,nosappnd,nouappnd "${PORTAGE_BUILDDIR}"
                chflags -R nosunlnk,nouunlnk "${PORTAGE_BUILDDIR}" 2>/dev/null
        fi
@@ -1480,7 +1480,7 @@ QA_INTERCEPTORS="javac java-config python python-config perl grep egrep fgrep se
 # level the QA interceptors if we're in depend
 if hasq "depend" "${EBUILD_SH_ARGS}"; then
        for BIN in ${QA_INTERCEPTORS}; do
-               BIN_PATH=$(type -pf ${BIN})
+               BIN_PATH=$(type -Pf ${BIN})
                if [ "$?" != "0" ]; then
                        BODY="echo \"*** missing command: ${BIN}\" >&2; return 127"
                else
index 36b8e130733f19c619259cb63607f0306b5d39c2..369f473be592374b650953560d0832c0fd50d0bc 100755 (executable)
@@ -39,9 +39,9 @@ else
        fi
 fi
 
-if type -p md5sum > /dev/null; then
+if type -P md5sum > /dev/null; then
        md5_com='md5sum -c "${FILE}.md5sum"'
-elif type -p md5 > /dev/null; then
+elif type -P md5 > /dev/null; then
        md5_com='[ "$(md5 -q ${FILE})" == "$(cut -d \  -f 1 ${FILE}.md5sum)" ]'
 else
        echo "warning, unable to do md5 verification of the snapshot!"
@@ -51,7 +51,7 @@ fi
 
 sync_local() {
        echo Syncing local tree...
-       if type -p tarsync &> /dev/null; then
+       if type -P tarsync &> /dev/null; then
                # tarsync doesn't take numeric uid/gid so we need to convert them.
                local inst_user="$(python -c "import pwd; print pwd.getpwuid(int('${PORTAGE_INST_UID:-0}'))[0]")"
                local inst_group="$(python -c "import grp; print grp.getgrgid(int('${PORTAGE_INST_GID:-0}'))[0]")"
index ab376b83c1a78e9f8514bb32e34205525299808d..742aed1b5e7d54692f98b786e676a573c6d70ac0 100755 (executable)
@@ -10,7 +10,7 @@
 # Leo Lipelis <aeoo@gentoo.org>
 # Karl Trygve Kalleberg <karltk@gentoo.org>
 
-if type -p gsed >/dev/null ; then
+if type -P gsed >/dev/null ; then
        function sed() { gsed "$@"; }
 fi
 
index 71137f244441bd29da21a99f79473d9cf5c06309..05a0f793946fe1cedf3146bc9f5f878b65da2b7d 100755 (executable)
@@ -55,7 +55,7 @@ install_qa_check() {
                sleep 1
        done
 
-       if type -p scanelf > /dev/null && ! hasq binchecks ${RESTRICT}; then
+       if type -P scanelf > /dev/null && ! hasq binchecks ${RESTRICT}; then
                local qa_var insecure_rpath=0 tmp_quiet=${PORTAGE_QUIET}
                
                # display warnings when using stricter because we die afterwards
@@ -366,8 +366,8 @@ install_mask() {
 }
 
 preinst_bsdflags() {
-       type -p chflags &>/dev/null || return 0
-       type -p mtree &>/dev/null || return 1
+       type -P chflags > /dev/null || return 0
+       type -P mtree > /dev/null || return 1
        # Save all the file flags for restoration after installation.
        mtree -c -p "${D}" -k flags > "${T}/bsdflags.mtree"
        # Remove all the file flags so that the merge phase can do anything
@@ -377,8 +377,8 @@ preinst_bsdflags() {
 }
 
 postinst_bsdflags() {
-       type -p chflags &>/dev/null || return 0
-       type -p mtree &>/dev/null || return 1
+       type -P chflags > /dev/null || return 0
+       type -P mtree > /dev/null || return 1
        # Restore all the file flags that were saved before installation.
        mtree -e -p "${ROOT}" -U -k flags < "${T}/bsdflags.mtree" &> /dev/null
 }
index 3ab8215730e7bbeeedbc0f73cbf3268d0b91f7c4..aeafc766b16e45be03691938dd602803cc8dadfe 100755 (executable)
@@ -5,7 +5,7 @@
 
 source "${PORTAGE_BIN_PATH:-/usr/lib/portage/bin}"/isolated-functions.sh
 
-if type -p chflags &>/dev/null && type -p mtree &>/dev/null; then
+if type -P chflags > /dev/null && type -P mtree > /dev/null ; then
        # Save all the file flags for restoration at the end of prepall.
        mtree -c -p "${D}" -k flags > "${T}/bsdflags.mtree"
        # Remove all the file flags so that prepall can do anything necessary.
@@ -17,7 +17,7 @@ prepallman
 prepallinfo
 prepallstrip
 
-if type -p chflags &>/dev/null && type -p mtree &>/dev/null; then
+if type -P chflags > /dev/null && type -P mtree > /dev/null; then
        # Restore all the file flags that were saved at the beginning of prepall.
        mtree -U -e -p "${D}" -k flags < "${T}/bsdflags.mtree" &> /dev/null
 fi
index d903a649eb452bb89c5b22bb03a42209db7bfd2b..46d051d3ffee78fdef83e1ea14f0a08428d5eb6a 100755 (executable)
@@ -14,9 +14,9 @@ then
 fi
 
 STRIP=${STRIP:-${CHOST}-strip}
-type -p -- ${STRIP} > /dev/null || STRIP=strip
+type -P -- ${STRIP} > /dev/null || STRIP=strip
 OBJCOPY=${OBJCOPY:-${CHOST}-objcopy}
-type -p -- ${OBJCOPY} > /dev/null || OBJCOPY=objcopy
+type -P -- ${OBJCOPY} > /dev/null || OBJCOPY=objcopy
 
 export PORTAGE_STRIP_FLAGS=${PORTAGE_STRIP_FLAGS:---strip-unneeded}
 
diff --git a/bin/sed b/bin/sed
index d4b1d87b2abe173d7e674c949f6eec152add1cb7..0a798acb46ae07b6801e1a1addf756f3efdf2633 100755 (executable)
--- a/bin/sed
+++ b/bin/sed
@@ -6,7 +6,7 @@ scriptpath="${BASH_SOURCE[0]}"
 
 if [[ -n ${ESED} ]]; then
        exec ${ESED} "$@"
-elif type -p gsed > /dev/null ; then
+elif type -P gsed > /dev/null ; then
        exec gsed "$@"
 else
        old_IFS="${IFS}"