# HG changeset patch # User "Titus von Boxberg" # Date 1265153064 -3600 # Node ID 26974c3670fdb7f6896b196e08724f91f1a13059 # Parent 9c3bfbb46b19174358be13551eb52744c055ecb7 scripts/samples: use the computed '$(sed)', not 'sed' diff -r 9c3bfbb46b19 -r 26974c3670fd samples/samples.mk --- a/samples/samples.mk Thu Feb 18 19:29:06 2010 +0100 +++ b/samples/samples.mk Wed Feb 03 00:24:24 2010 +0100 @@ -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/;' \ ) # ----------------------------------------------------------