Skip to content

Commit

Permalink
Fix File Sort Order
Browse files Browse the repository at this point in the history
- 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.
  • Loading branch information
wwarthen committed Oct 26, 2024
1 parent 5ddde9c commit 497fa3c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/Images/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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 ; \
Expand Down

0 comments on commit 497fa3c

Please sign in to comment.