From ef8613bfb68ad8572b4d9f5fd708f5238c1141d3 Mon Sep 17 00:00:00 2001
From: jdh8d <jdh8d@git.zephyr-software.com>
Date: Tue, 11 Aug 2015 19:02:14 +0000
Subject: [PATCH] forget using which to locate commands.  assume they are in
 the path.

---
 set_command_envs | 18 +++++++++---------
 1 file changed, 9 insertions(+), 9 deletions(-)

diff --git a/set_command_envs b/set_command_envs
index f7a147ae8..331058537 100644
--- a/set_command_envs
+++ b/set_command_envs
@@ -1,11 +1,11 @@
-export PS_OBJDUMP=`which objdump`
-export PS_OBJCOPY=`which objcopy`
-export PS_READELF=`which readelf`
-export PS_NM=`which nm`
-export PS_STRIP=`which strip`
+export PS_OBJDUMP=objdump
+export PS_OBJCOPY=objcopy
+export PS_READELF=readelf
+export PS_NM=nm
+export PS_STRIP=strip
 export PS_DATE="date --iso-8601=seconds"
-export PS_TAR=`which tar`
-export PS_MD5SUM=`which md5sum`
-export PS_TIMEOUT=`which timeout`
-export PS_GREP=`which grep`
+export PS_TAR=tar
+export PS_MD5SUM=md5sum
+export PS_TIMEOUT=timeout
+export PS_GREP=grep
 
-- 
GitLab