lib/scripts/getfunctions
changeset 63994 18cbe1b8d859
parent 62614 0a01bc7f0946
child 66667 2e580fcf6522
equal deleted inserted replaced
63993:9c0ff0c12116 63994:18cbe1b8d859
    17   function platform_path() { echo "$@"; }
    17   function platform_path() { echo "$@"; }
    18 fi
    18 fi
    19 export -f platform_path
    19 export -f platform_path
    20 
    20 
    21 #GNU tar (notably on Mac OS X)
    21 #GNU tar (notably on Mac OS X)
    22 if [ -x /usr/bin/gnutar ]; then
    22 if type -p gnutar >/dev/null
    23   function tar() { /usr/bin/gnutar "$@"; }
    23 then
       
    24   function tar() { gnutar "$@"; }
    24   export -f tar
    25   export -f tar
    25 fi
    26 fi
    26 
    27 
    27 #robust invocation via ISABELLE_JDK_HOME
    28 #robust invocation via ISABELLE_JDK_HOME
    28 function isabelle_jdk ()
    29 function isabelle_jdk ()