diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2010-07-29 23:38:17 +0200 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2010-07-29 23:38:17 +0200 |
commit | aef64acf2d4f120f473c79dc2a8524c38f6e9afb (patch) | |
tree | 793ca4c18c3c7e83b5a4fbdaed3df791ea19c945 /scripts | |
parent | bec38f92eb1a5a72192fb9dcc64083618a18bf34 (diff) |
tac not available on FreeBSD, fix permission in tslib package
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/tsort | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/scripts/tsort b/scripts/tsort index d4b176f6f..77ffa1237 100755 --- a/scripts/tsort +++ b/scripts/tsort @@ -7,6 +7,9 @@ case $os in NetBSD|MirBSD|OpenBSD) /usr/bin/tsort -r ;; + FreeBSD) + /usr/bin/tsort | tail -r + ;; *) /usr/bin/tsort | tac ;; |