diff options
| author | Manish Goregaokar <manishsmail@gmail.com> | 2015-05-21 13:38:26 +0530 |
|---|---|---|
| committer | Manish Goregaokar <manishsmail@gmail.com> | 2015-05-21 13:38:26 +0530 |
| commit | 02bce96e7baab54d91c8704cee64bc36b0ec8c06 (patch) | |
| tree | 593343c692999e421aa7b26222b0399c3720b6bb | |
| parent | 4423748eb85c98df3baccd8f1178bc10d7180119 (diff) | |
| parent | 0cac79181b1014bee376d9664f7bbf18559f474d (diff) | |
| download | rust-02bce96e7baab54d91c8704cee64bc36b0ec8c06.tar.gz rust-02bce96e7baab54d91c8704cee64bc36b0ec8c06.zip | |
Rollup merge of #25648 - semarie:head-cut, r=luqmana
the "-c" option of head isn't a posix option, and it isn't supported under openbsd. prefer the use of cut -c 1-8 (which is posix) to extract the first 8 chars. r? @alexcrichton
| -rwxr-xr-x | configure | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure b/configure index 4f3375b8668..9b8207ee915 100755 --- a/configure +++ b/configure @@ -717,10 +717,10 @@ probe CFG_MD5 md5 probe CFG_MD5SUM md5sum if [ -n "$CFG_MD5" ] then - CFG_HASH_COMMAND="$CFG_MD5 -q | head -c 8" + CFG_HASH_COMMAND="$CFG_MD5 -q | cut -c 1-8" elif [ -n "$CFG_MD5SUM" ] then - CFG_HASH_COMMAND="$CFG_MD5SUM | head -c 8" + CFG_HASH_COMMAND="$CFG_MD5SUM | cut -c 1-8" else err 'could not find one of: md5 md5sum' fi |
