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.
This commit is contained in:
Wayne Warthen
2024-10-26 16:53:47 -07:00
parent 5ddde9cee2
commit 497fa3cdf3

View File

@@ -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 ; \