@@ -191,40 +191,40 @@ $($(1)_fetched):
191
191
mkdir -p $$(@D ) $(SOURCES_PATH )
192
192
rm -f $$@
193
193
touch $$@
194
- cd $$(@D ) ; $(call $(1 ) _fetch_cmds, $( 1 ) )
194
+ cd $$(@D ) ; $($(1 ) _fetch_cmds)
195
195
cd $($(1 ) _source_dir) ; $(foreach source,$($(1 ) _all_sources) ,$(build_SHA256SUM ) $(source ) >> $$(@ ) ;)
196
196
touch $$@
197
197
$($(1 ) _extracted) : | $($(1 ) _fetched)
198
198
echo Extracting $(1 ) ...
199
199
mkdir -p $$(@D )
200
- cd $$(@D ) ; $(call $(1 ) _extract_cmds, $( 1 ) )
200
+ cd $$(@D ) ; $($(1 ) _extract_cmds)
201
201
touch $$@
202
202
$($(1 ) _preprocessed) : | $($(1 ) _extracted)
203
203
echo Preprocessing $(1 ) ...
204
204
mkdir -p $$(@D ) $($(1 ) _patch_dir)
205
205
$(foreach patch,$($(1 ) _patches) ,cd $(PATCHES_PATH ) /$(1 ) ; cp $(patch ) $($(1 ) _patch_dir) ;)
206
- cd $$(@D ) ; $(call $(1 ) _preprocess_cmds, $( 1 ) )
206
+ cd $$(@D ) ; $($(1 ) _preprocess_cmds)
207
207
touch $$@
208
208
$($(1 ) _configured) : | $($(1 ) _dependencies) $($(1 ) _preprocessed)
209
209
echo Configuring $(1 ) ...
210
210
rm -rf $(host_prefix ) ; mkdir -p $(host_prefix ) /lib; cd $(host_prefix ) ; $(foreach package,$($(1 ) _all_dependencies) , tar --no-same-owner -xf $($(package ) _cached) ; )
211
211
mkdir -p $$(@D )
212
- +cd $$(@D ) ; $($(1 ) _config_env) $(call $(1 ) _config_cmds, $( 1 ) )
212
+ +cd $$(@D ) ; $($(1 ) _config_env) $($(1 ) _config_cmds)
213
213
touch $$@
214
214
$($(1 ) _built) : | $($(1 ) _configured)
215
215
echo Building $(1 ) ...
216
216
mkdir -p $$(@D )
217
- +cd $$(@D ) ; $($(1 ) _build_env) $(call $(1 ) _build_cmds, $( 1 ) )
217
+ +cd $$(@D ) ; $($(1 ) _build_env) $($(1 ) _build_cmds)
218
218
touch $$@
219
219
$($(1 ) _staged) : | $($(1 ) _built)
220
220
echo Staging $(1 ) ...
221
221
mkdir -p $($(1 ) _staging_dir) /$(host_prefix )
222
- cd $($(1 ) _build_dir) ; $($(1 ) _stage_env) $(call $(1 ) _stage_cmds, $( 1 ) )
222
+ cd $($(1 ) _build_dir) ; $($(1 ) _stage_env) $($(1 ) _stage_cmds)
223
223
rm -rf $($(1 ) _extract_dir)
224
224
touch $$@
225
225
$($(1 ) _postprocessed) : | $($(1 ) _staged)
226
226
echo Postprocessing $(1 ) ...
227
- cd $($(1 ) _staging_prefix_dir) ; $(call $(1 ) _postprocess_cmds)
227
+ cd $($(1 ) _staging_prefix_dir) ; $($(1 ) _postprocess_cmds)
228
228
touch $$@
229
229
$($(1 ) _cached) : | $($(1 ) _dependencies) $($(1 ) _postprocessed)
230
230
echo Caching $(1 ) ...
0 commit comments