Browse Source

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.
master
Wayne Warthen 1 year ago
parent
commit
497fa3cdf3
  1. 2
      Source/Images/Makefile

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

Loading…
Cancel
Save