summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYann E. MORIN" <yann.morin.1998@anciens.enib.fr>2011-10-16 19:48:10 (GMT)
committerYann E. MORIN" <yann.morin.1998@anciens.enib.fr>2011-10-16 19:48:10 (GMT)
commit3032eb0e9c330460b7057ce189d4d8bedc1b9de5 (patch)
treee72cf3f57c03a0c499aa9e53eadbd88568825c84
parent0c06bd8caec4465174a841332804480a2fcdd9ab (diff)
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" <yann.morin.1998@anciens.enib.fr>
-rw-r--r--samples/samples.mk8
1 files changed, 4 insertions, 4 deletions
diff --git a/samples/samples.mk b/samples/samples.mk
index 72b855e..2a5ac62 100644
--- a/samples/samples.mk
+++ b/samples/samples.mk
@@ -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/;' \
)
# ----------------------------------------------------------