Skip to content
Snippets Groups Projects
Commit b7e751f1 authored by Jason Hiser's avatar Jason Hiser :tractor:
Browse files

updated to not override settings of PS_OBJCOPY, etc

parent 8e1e4a05
No related branches found
No related tags found
No related merge requests found
Pipeline #923 passed
export PS_OBJDUMP=objdump if [[ -z $PS_OBJDUMP ]]; then export PS_OBJDUMP=objdump; fi
export PS_OBJCOPY=objcopy if [[ -z $PS_OBJCOPY ]] ; then export PS_OBJCOPY=objcopy; fi
export PS_READELF=readelf if [[ -z $PS_READELF ]] ; then export PS_READELF=readelf; fi
export PS_NM=nm if [[ -z $PS_NM ]] ; then export PS_NM=nm; fi
export PS_STRIP=strip if [[ -z $PS_STRIP ]] ; then export PS_STRIP=strip; fi
export PS_DATE="date --iso-8601=seconds" if [[ -z $PS_DATE ]] ; then export PS_DATE="date --iso-8601=seconds"; fi
export PS_TAR=tar if [[ -z $PS_TAR ]] ; then export PS_TAR=tar; fi
export PS_MD5SUM=md5sum if [[ -z $PS_MD5SUM ]] ; then export PS_MD5SUM=md5sum; fi
export PS_TIMEOUT=timeout if [[ -z $PS_TIMEOUT ]] ; then export PS_TIMEOUT=timeout; fi
export PS_GREP=grep if [[ -z $PS_GREP ]] ; then export PS_GREP=grep; fi
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment