diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2010-07-29 22:24:15 +0200 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2010-07-29 22:24:15 +0200 |
commit | d258945b9b0f2b978c0ee2fa4c772827122065f0 (patch) | |
tree | 442fe21d5d2c4926c70c71afaa8f4a9174dacbf5 /scripts | |
parent | c125864acf632695ee08edf60ad8e5926c6832b4 (diff) |
fix tsort wrapper for NetBSD
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/tsort | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/tsort b/scripts/tsort index 77ffa1237..93df1aa8a 100755 --- a/scripts/tsort +++ b/scripts/tsort @@ -4,10 +4,10 @@ os=$(uname) case $os in - NetBSD|MirBSD|OpenBSD) + MirBSD|OpenBSD) /usr/bin/tsort -r ;; - FreeBSD) + NetBSD|FreeBSD) /usr/bin/tsort | tail -r ;; *) |