findutils: fix compile with debugging options
[openadk.git] / scripts / tsort
blobb6e08b24cab6d97e58431051858cce61c833d5d3
1 #!/usr/bin/env bash
2 # This file is part of the OpenADK project. OpenADK is copyrighted
3 # material, please see the LICENCE file in the top-level directory.
5 os=$(uname)
6 case $os in
7 MirBSD|OpenBSD)
8 /usr/bin/tsort -r
9 ;;
10 NetBSD|FreeBSD|Darwin)
11 /usr/bin/tsort | tail -r
14 /usr/bin/tsort | tac
16 esac