diff options
author | Alexey Neyman <stilor@att.net> | 2015-10-30 10:32:16 -0700 |
---|---|---|
committer | Alexey Neyman <stilor@att.net> | 2015-10-30 10:32:16 -0700 |
commit | 263e8026eca666e09516764f6535da518f36fcb9 (patch) | |
tree | e33f4ce99f048e77616f6ae8ff3fbc8cd50cc6cd /samples/samples.mk | |
parent | 319023c7afc4a48593240db4afe58ac57c4cc4a6 (diff) | |
download | crosstool-ng-263e8026eca666e09516764f6535da518f36fcb9.tar.gz crosstool-ng-263e8026eca666e09516764f6535da518f36fcb9.tar.bz2 crosstool-ng-263e8026eca666e09516764f6535da518f36fcb9.zip |
Change sed monstrosity into a make variable.
The convoluted sed expression was doing what is already available in
make as `$*'.
Signed-off-by: Alexey Neyman <stilor@att.net>
Diffstat (limited to 'samples/samples.mk')
-rw-r--r-- | samples/samples.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/samples/samples.mk b/samples/samples.mk index e154e5ca..4545d5c3 100644 --- a/samples/samples.mk +++ b/samples/samples.mk @@ -204,5 +204,5 @@ build-all: $(patsubst %,build-%,$(CT_SAMPLES)) # Build all samples, overiding the number of // jobs per sample build-all.%: - $(SILENT)$(MAKE) -rf $(CT_NG) V=$(V) $(shell echo "$(@)" |$(sed) -r -e 's|^([^.]+)\.([[:digit:]]+)$$|\1 CT_JOBS=\2|;') + $(SILENT)$(MAKE) -rf $(CT_NG) build-all CT_JOBS=$* |