# HG changeset patch # User Rob Landley # Date 1201045135 21600 # Node ID c3659856f1206da8b58453caa33e4dc3db6c783c # Parent 4121825716b8f915662e7336652feb275c8804ce Sort newtoys.h by command name, not by USE_ macro. diff -r 4121825716b8 -r c3659856f120 scripts/make.sh --- a/scripts/make.sh Tue Jan 22 15:33:50 2008 -0600 +++ b/scripts/make.sh Tue Jan 22 17:38:55 2008 -0600 @@ -22,7 +22,7 @@ done } echo "NEWTOY(toybox, NULL, 0)" > generated/newtoys.h -newtoys | sort >> generated/newtoys.h +newtoys | sort -t '(' -k3,3 >> generated/newtoys.h # Extract global structure definitions from toys/*.c