diff options
author | Alexey Neyman <stilor@att.net> | 2016-12-13 18:07:21 -0800 |
---|---|---|
committer | Alexey Neyman <stilor@att.net> | 2017-01-19 18:08:29 -0800 |
commit | 955f5bc0b8a879ba5d1b9a65a31cc235c9fd9be8 (patch) | |
tree | 25765a1f5961a0cc2580a0bbd4a0c50aeef3fd18 /ct-ng.in | |
parent | c0cc73cd6f3040ea08dc09384aa289540b3fb2a2 (diff) | |
download | crosstool-ng-955f5bc0b8a879ba5d1b9a65a31cc235c9fd9be8.tar.gz crosstool-ng-955f5bc0b8a879ba5d1b9a65a31cc235c9fd9be8.tar.bz2 crosstool-ng-955f5bc0b8a879ba5d1b9a65a31cc235c9fd9be8.zip |
Get rid of .config.2.
Now handled by CT_LoadConfig.
Signed-off-by: Alexey Neyman <stilor@att.net>
Diffstat (limited to 'ct-ng.in')
-rw-r--r-- | ct-ng.in | 11 |
1 files changed, 3 insertions, 8 deletions
@@ -136,19 +136,14 @@ help-env:: @echo "or configure an existing sample." @false -.config.2: .config - $(SILENT)$(sed) -r -e 's/^([^=]+_ARRAY)="(.*)"$$/\1=( \2 )/;' \ - -e '/^[^=]+_ARRAY=/s/\\(.)/\1/g;' \ - $< >$@ - -show-tuple: .config.2 +show-tuple: .config $(SILENT)$(bash) $(CT_LIB_DIR)/scripts/showConfig.sh '$${CT_TARGET}' # Actual build -source: .config.2 +source: .config $(SILENT)CT_SOURCE=y $(CT_LIB_DIR)/scripts/crosstool-NG.sh -build: .config.2 +build: .config $(SILENT)$(CT_LIB_DIR)/scripts/crosstool-NG.sh build.%: |