diff options
author | Titus von Boxberg" <tvb377@gmx.de> | 2010-02-03 00:24:24 +0100 |
---|---|---|
committer | Titus von Boxberg" <tvb377@gmx.de> | 2010-02-03 00:24:24 +0100 |
commit | 836562e0d0d0d3e8a74d1b6d05e5e5da0d5d6ded (patch) | |
tree | 429e5c77adff18cd094b89c2dff144fa87670b5d /samples | |
parent | 2a1730cd1db451fb20975a26a676c4904033bed0 (diff) | |
download | crosstool-ng-836562e0d0d0d3e8a74d1b6d05e5e5da0d5d6ded.tar.gz crosstool-ng-836562e0d0d0d3e8a74d1b6d05e5e5da0d5d6ded.tar.bz2 crosstool-ng-836562e0d0d0d3e8a74d1b6d05e5e5da0d5d6ded.zip |
scripts/samples: use the computed '$(sed)', not 'sed'
Diffstat (limited to 'samples')
-rw-r--r-- | samples/samples.mk | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/samples/samples.mk b/samples/samples.mk index a42ea40f..6d30d5f1 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/;' \ + |$(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/;' \ ) # ---------------------------------------------------------- |