diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2014-05-23 21:39:22 +0200 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2014-05-23 21:39:22 +0200 |
commit | 5a7b33e61779a5debf599aa0e3705b239b369490 (patch) | |
tree | 168d0b5f768898cf66e73fcfe38a01def88f39c3 /scripts/tsort | |
parent | b08f20692aaa5002fcd1f6a4a8e9f856e445208f (diff) |
cleanup scripts dir
Diffstat (limited to 'scripts/tsort')
-rwxr-xr-x | scripts/tsort | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/scripts/tsort b/scripts/tsort deleted file mode 100755 index b6e08b24c..000000000 --- a/scripts/tsort +++ /dev/null @@ -1,16 +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. - -os=$(uname) -case $os in - MirBSD|OpenBSD) - /usr/bin/tsort -r - ;; - NetBSD|FreeBSD|Darwin) - /usr/bin/tsort | tail -r - ;; - *) - /usr/bin/tsort | tac - ;; -esac |