From: Carsten Schlote <[email protected]> With lots of target configs, it became obvious that output should be sorted.
Signed-off-by: Carsten Schlote <[email protected]> --- build_all_v2.mk | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/build_all_v2.mk b/build_all_v2.mk index f02c88f..5422b98 100755 --- a/build_all_v2.mk +++ b/build_all_v2.mk @@ -109,6 +109,6 @@ print-%: help: @echo "Available DPKG targets:" - @for i in $(DEBS); do echo $$i; done; + @for i in $(sort $(DEBS)); do echo $$i; done; @echo "Available tarball targets:" - @for i in $(TBZ2S); do echo $$i; done; + @for i in $(sort $(TBZ2S)); do echo $$i; done; -- 1.6.6.1 -- ptxdist mailing list [email protected]
