# HG changeset patch # User "Titus von Boxberg" # Date 1265153064 -3600 # Node ID 29f23b97a4caa13c9344cf4aab3f5d1fb41e0dd1 # Parent 8dc8aa9c11353ea4f105bd75dbe357f1b2960a4c scripts/samples: use the computed '$(sed)', not 'sed' (transplanted from 26974c3670fdb7f6896b196e08724f91f1a13059) diff -r 8dc8aa9c1135 -r 29f23b97a4ca samples/samples.mk --- a/samples/samples.mk Sun Feb 07 17:17:52 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/;' \ ) # ----------------------------------------------------------