diff options
Diffstat (limited to 'usr/src')
-rw-r--r-- | usr/src/lib/libc/extract-copyright.pl | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/usr/src/lib/libc/extract-copyright.pl b/usr/src/lib/libc/extract-copyright.pl index 2172216ae7..09a35a52e5 100644 --- a/usr/src/lib/libc/extract-copyright.pl +++ b/usr/src/lib/libc/extract-copyright.pl @@ -12,6 +12,7 @@ # # Copyright 2010 Nexenta Systems, Inc. All rights reserved. +# Copyright 2016 Josef 'Jeff' Sipek <jeffpc@josefsipek.net> # # @@ -106,6 +107,9 @@ foreach $a (@ARGV) { } } +# sort files to get a stable ordering to aid wsdiff(1onbld) +@FILES = sort @FILES; + foreach $a (@FILES) { dofile($a); } |