convert `type -p` to `type -P` as noted by grobian
authorMike Frysinger <vapier@gentoo.org>
Sun, 15 Apr 2007 09:32:30 +0000 (09:32 -0000)
committerMike Frysinger <vapier@gentoo.org>
Sun, 15 Apr 2007 09:32:30 +0000 (09:32 -0000)
svn path=/main/trunk/; revision=6411

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

index 755b0ba3950887a670f4e4f9c8b4b5bfc408ed22..370445312552773f2c7bcaddcdc321049e58eb3f 100755 (executable)
@@ -449,7 +449,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
@@ -687,7 +687,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
@@ -1405,7 +1405,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 7602deab59094f98408272e52209ee23a9b33565..01e7ae5542d87de5d11efea5dda94c4f2493c7de 100755 (executable)
@@ -38,9 +38,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!"
@@ -50,7 +50,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 bf1d0139bf4519a2032b330cc00cf477db111461..fd192b0e7a86285bd79cbe9abaf1bef43f8c0811 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 51c52c3e097e83a4f277d3bf7dabf9ed27f630d5..d7aa9b05fbbe7f9cc161a179f11713dd80c4fee9 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
@@ -370,8 +370,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
@@ -381,8 +381,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 4b1b1955349fff80f90d0671c1b10a797913f5a8..dbbe9582629ce203188ed8bd3e640a3b3ad4480f 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.
@@ -21,7 +21,7 @@ ecompress --dequeue
 
 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}"