diff options
author | Bryan Hundven <bryanhundven@gmail.com> | 2015-05-09 17:38:43 -0700 |
---|---|---|
committer | Bryan Hundven <bryanhundven@gmail.com> | 2015-05-09 17:42:13 -0700 |
commit | 90037b9ee3c571a1983f569063caa7c84df60ee0 (patch) | |
tree | c2324bf44312f14a4edcc2ec730b8f030ebf6c25 | |
parent | fa769c32bb3dc8123ef95c0980504b6c826d531d (diff) | |
download | crosstool-ng-90037b9ee3c571a1983f569063caa7c84df60ee0.tar.gz crosstool-ng-90037b9ee3c571a1983f569063caa7c84df60ee0.tar.bz2 crosstool-ng-90037b9ee3c571a1983f569063caa7c84df60ee0.zip |
showSamples: Update to use variables from paths.sh
This change modifies the use of sed and awk to use the variables set by
paths.sh during the installation process of crosstool-NG.
Signed-off-by: Bryan Hundven <bryanhundven@gmail.com>
-rwxr-xr-x | scripts/showSamples.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/showSamples.sh b/scripts/showSamples.sh index ccb8382d..011c75ac 100755 --- a/scripts/showSamples.sh +++ b/scripts/showSamples.sh @@ -103,7 +103,7 @@ dump_single_sample() { ;; canadian) printf "| ''" - printf "${sample}" |sed -r -e 's/.*,//' + printf "${sample}" |${sed} -r -e 's/.*,//' printf "'' | ${CT_HOST} " ;; *) ;; @@ -149,7 +149,7 @@ dump_single_sample() { fi ) sample_updated="$( git log -n1 --pretty=format:'%ci' "${sample_top}/samples/${sample}" \ - |awk '{ print $1; }' )" + |${awk} '{ print $1; }' )" printf "| ${sample_updated} " echo "|" fi |