diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2010-02-18 19:05:22 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2010-02-18 19:05:22 +0100 |
commit | e522cbff7a7c5f3b5faa09b0e7254032ae80ae71 (patch) | |
tree | 0db2f63ff6cf10317a9a315cfb62de442d4bf958 /mk | |
parent | 2440d844c6f493a8439c493adca88caf5e0da58f (diff) |
on Linux use tsort and reverse with tac, On BSD use tsort -r
Diffstat (limited to 'mk')
-rw-r--r-- | mk/pkg-bottom.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mk/pkg-bottom.mk b/mk/pkg-bottom.mk index 41fecf3f2..13b49dfdd 100644 --- a/mk/pkg-bottom.mk +++ b/mk/pkg-bottom.mk @@ -18,7 +18,7 @@ do-configure: post-configure: ${_CONFIGURE_COOKIE}: ${_PATCH_COOKIE} @sed -e '/^#/d' ${REORDER_DEPENDENCIES} | \ - tsort | tac | while read f; do \ + tsort | while read f; do \ cd ${WRKSRC}; \ case $$f in \ /*) \ |