diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2011-03-31 20:20:09 +0200 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2011-03-31 20:20:09 +0200 |
commit | c2bd3a43342e37a05a97e12581dd2bd52993877a (patch) | |
tree | 39f9427d581669d8f619b4df44c5c5548c8fd955 /scripts/sha256sum | |
parent | ac46bdeef28bc2b65e1880884a79257c28e423a7 (diff) |
Revert "fix conflict, autoseect libgcj"
This reverts commit ac46bdeef28bc2b65e1880884a79257c28e423a7, reversing
changes made to 418fb3668f7140cc3e2ba07c354fe0d9bbb47d04.
Diffstat (limited to 'scripts/sha256sum')
-rwxr-xr-x | scripts/sha256sum | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/scripts/sha256sum b/scripts/sha256sum deleted file mode 100755 index da34d9113..000000000 --- a/scripts/sha256sum +++ /dev/null @@ -1,11 +0,0 @@ -#!/usr/bin/env bash -# This file is part of the OpenADK project. OpenADK is copyrighted -# material, please see the LICENCE file in the top-level directory. - -if [ -x /usr/bin/sha256sum ]; then - /usr/bin/sha256sum "$@" -else - tmp=$(mktemp -t yyy) - cat - > $tmp - shasum -a 256 "$@" $tmp -fi |