mirror of
https://github.com/wwarthen/RomWBW.git
synced 2026-02-06 14:11:48 -06:00
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:
@@ -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 ; \
|
||||
|
||||
Reference in New Issue
Block a user