diff options
author | Michael Hanselmann <hansmi@gentoo.org> | 2006-04-26 20:03:24 +0000 |
---|---|---|
committer | Michael Hanselmann <hansmi@gentoo.org> | 2006-04-26 20:03:24 +0000 |
commit | 1ba544150edcb3a6dea3f43f80826bccec57c718 (patch) | |
tree | c4c46a73a3eca14e417fb6f505a7e8d67ee442a0 /net-dns/djbdns/files/dnstracesort.patch | |
parent | Fix of smarttime patch that screwed up the { } time (diff) | |
download | gentoo-2-1ba544150edcb3a6dea3f43f80826bccec57c718.tar.gz gentoo-2-1ba544150edcb3a6dea3f43f80826bccec57c718.tar.bz2 gentoo-2-1ba544150edcb3a6dea3f43f80826bccec57c718.zip |
Minor patch to fix the call syntax of "sort", bug 131355.
(Portage version: 2.1_pre9-r4)
Diffstat (limited to 'net-dns/djbdns/files/dnstracesort.patch')
-rw-r--r-- | net-dns/djbdns/files/dnstracesort.patch | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/net-dns/djbdns/files/dnstracesort.patch b/net-dns/djbdns/files/dnstracesort.patch new file mode 100644 index 000000000000..3bf56f5a1ce6 --- /dev/null +++ b/net-dns/djbdns/files/dnstracesort.patch @@ -0,0 +1,11 @@ +--- djbdns-1.05/dnstracesort.sh.orig 2006-04-26 21:52:54.000000000 +0200 ++++ djbdns-1.05/dnstracesort.sh 2006-04-26 21:53:02.000000000 +0200 +@@ -12,7 +12,7 @@ + } + print + } +-' | sort -t: +0 -2 +4 +3 -4 +2 -3 | uniq | awk -F: ' ++' | sort -t: -k 1,3 -k 5 -k 4,5 -k 3,4 | uniq | awk -F: ' + { + type = $1 + q = $2 |