From 497fa3cdf3f60b4f18fbb1737bc0ee3bc1205b57 Mon Sep 17 00:00:00 2001 From: Wayne Warthen Date: Sat, 26 Oct 2024 16:53:47 -0700 Subject: [PATCH] Fix File Sort Order - The file sort order being forced in the disk image generation process was causing a problem with achieving binary exact build results. Not sure why it was the way it was, but corrected now. --- Source/Images/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Images/Makefile b/Source/Images/Makefile index 85779f4f..fdf0490b 100644 --- a/Source/Images/Makefile +++ b/Source/Images/Makefile @@ -122,7 +122,7 @@ blankhd1k: if [ -f $${dtype}_$$d.txt ] ; then \ echo " " copying files from $${dtype}_$$d.txt ; \ grep -v ^# $${dtype}_$$d.txt | tr -d '\r' | while read file user ; do \ - rf=$$($(CASEFN) $$file | sort -V) ; \ + rf=$$($(CASEFN) $$file | sort -f) ; \ echo " " $$rf ; \ if [ -z "$$rf" ] ; then \ echo " " $$file missing ; \