diff -r dcfe244fc65a -r e73cee842741 samples/samples.mk --- a/samples/samples.mk Sun Jan 31 20:10:14 2010 +0100 +++ b/samples/samples.mk Thu Apr 22 19:26:52 2010 +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/;' \ + |$(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/(.*),(.*)/\2,\1/;' \ ) # ----------------------------------------------------------