Chameleon

Chameleon Commit Details

Date:2014-02-04 22:03:34 (10 years 1 month ago)
Author:Jief Luce
Commit:2375
Parents: 2374
Message:Support path to "make" containing spaces
Changes:
M/branches/Jief/Make.rules
M/branches/Jief/Makefile

File differences

branches/Jief/Make.rules
103103
104104
105105
106
106
107107
108108
109109
......
128128
129129
130130
131
131
132132
133133
134134
target=`echo $@ | sed s/-recursive//`; \
list='$(SUBDIRS)'; for subdir in $$list; do \
echo ================= Making $$target in $$subdir =================; \
(cd $$subdir && $(MAKE) $$target)\
(cd $$subdir && "$(MAKE)" $$target)\
|| eval $$failcom;\
done;
else \
local_target="$$target"; \
fi; \
(cd $$subdir && $(MAKE) $$local_target) \
(cd $$subdir && "$(MAKE)" $$local_target) \
|| eval $$failcom; \
done
branches/Jief/Makefile
4444
4545
4646
47
47
4848
4949
5050
@make -C $(SRCROOT)/i386/config $@
all: $(SYMROOT) $(OBJROOT) $(CONFIG_HEADERS) $(HEADER_VERSION) $(SRCROOT)/revision
@$(MAKE) all-recursive
@"$(MAKE)" all-recursive
dist image: all
@# To force the read of auto.conf (generated by 'all' target)

Archive Download the corresponding diff file

Revision: 2375