From cec7ac1b6fa4b80f0536354cbb975d004e78155b Mon Sep 17 00:00:00 2001 From: Josef 'Jeff' Sipek Date: Thu, 21 Apr 2016 09:39:22 -0400 Subject: [PATCH] 6924 make libc copyright file contents deterministic Reviewed by: Toomas Soome Reviewed by: Marcel Telka Reviewed by: Garrett D'Amore Approved by: Robert Mustacchi --- usr/src/lib/libc/extract-copyright.pl | 4 ++++ 1 file changed, 4 insertions(+) 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 # # @@ -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); } -- 2.11.4.GIT