# HG changeset patch # User "Yann E. MORIN" # Date 1318794490 -7200 # Node ID ca0322db584fa7e382d6a58b7ea53ffbf6d24096 # Parent 7b64746b0ab3d727a2822b86ef29cee85e382054 scripts: do not force locale when sorting samples Just use whatever the user has set in his/her environment. Signed-off-by: "Yann E. MORIN" diff -r 7b64746b0ab3 -r ca0322db584f samples/samples.mk --- a/samples/samples.mk Fri Oct 07 15:06:44 2011 +0200 +++ b/samples/samples.mk Sun Oct 16 21:48:10 2011 +0200 @@ -5,10 +5,10 @@ CT_TOP_SAMPLES := $(patsubst $(CT_TOP_DIR)/samples/%/crosstool.config,%,$(wildcard $(CT_TOP_DIR)/samples/*/crosstool.config)) CT_LIB_SAMPLES := $(filter-out $(CT_TOP_SAMPLES),$(patsubst $(CT_LIB_DIR)/samples/%/crosstool.config,%,$(wildcard $(CT_LIB_DIR)/samples/*/crosstool.config))) CT_SAMPLES := $(shell echo $(sort $(CT_TOP_SAMPLES) $(CT_LIB_SAMPLES)) \ - |$(sed) -r -e 's/ /\n/g;' \ - |$(sed) -r -e 's/(.*),(.*)/\2,\1/;' \ - |LC_ALL=C sort \ - |$(sed) -r -e 's/(.*),(.*)/\2,\1/;' \ + |$(sed) -r -e 's/ /\n/g;' \ + |$(sed) -r -e 's/(.*),(.*)/\2,\1/;' \ + |sort \ + |$(sed) -r -e 's/(.*),(.*)/\2,\1/;' \ ) # ----------------------------------------------------------