Skip to content

Commit 33b4430

Browse files
committed
---
yaml --- r: 3509 b: refs/heads/master c: df8161d h: refs/heads/master i: 3507: 616a507 v: v3
1 parent 5613229 commit 33b4430

File tree

2 files changed

+16
-11
lines changed

2 files changed

+16
-11
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
---
2-
refs/heads/master: 39fccf3bc78c53924dd0b5676dc114d62ab8d1b0
2+
refs/heads/master: df8161d44cf8eb9d17a626879e4f5cbc954b4b88

trunk/Makefile.in

Lines changed: 15 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,7 @@ endif
230230

231231
config.mk: $(S)configure $(S)Makefile.in $(S)src/snapshots.txt
232232
@$(call E, cfg: reconfiguring)
233-
$(S)configure $(CFG_CONFIGURE_ARGS)
233+
$(Q)$(S)configure $(CFG_CONFIGURE_ARGS)
234234

235235

236236
######################################################################
@@ -253,28 +253,33 @@ include $(CFG_SRC_DIR)/mk/docs.mk
253253
# Secondary makefiles, conditionalized for speed
254254
######################################################################
255255

256-
ifneq ($(findstring dist,$(MAKECMDGOALS)),)
256+
ifneq ($(strip $(findstring dist,$(MAKECMDGOALS)) \
257+
$(findstring check,$(MAKECMDGOALS)) \
258+
$(findstring test,$(MAKECMDGOALS)) \
259+
$(findstring clean,$(MAKECMDGOALS))),)
260+
CFG_INFO := $(info cfg: including dist rules)
257261
include $(CFG_SRC_DIR)/mk/dist.mk
258262
endif
259263

260-
ifneq ($(findstring snap,$(MAKECMDGOALS)),)
264+
ifneq ($(strip $(findstring snap,$(MAKECMDGOALS)) \
265+
$(findstring clean,$(MAKECMDGOALS))),)
266+
CFG_INFO := $(info cfg: including snap rules)
261267
include $(CFG_SRC_DIR)/mk/snap.mk
262268
endif
263269

264270
ifneq ($(findstring reformat,$(MAKECMDGOALS)),)
271+
CFG_INFO := $(info cfg: including reformat rules)
265272
include $(CFG_SRC_DIR)/mk/pp.mk
266273
endif
267274

268-
ifneq ($(findstring check,$(MAKECMDGOALS))\
269-
$(findstring test,$(MAKECMDGOALS))\
270-
$(findstring tidy,$(MAKECMDGOALS)),)
271-
include $(CFG_SRC_DIR)/mk/dist.mk
275+
ifneq ($(strip $(findstring check,$(MAKECMDGOALS)) \
276+
$(findstring test,$(MAKECMDGOALS)) \
277+
$(findstring tidy,$(MAKECMDGOALS))),)
278+
CFG_INFO := $(info cfg: including test rules)
272279
include $(CFG_SRC_DIR)/mk/tests.mk
273280
endif
274281

275282
ifneq ($(findstring clean,$(MAKECMDGOALS)),)
276-
include $(CFG_SRC_DIR)/mk/dist.mk
277-
include $(CFG_SRC_DIR)/mk/snap.mk
278-
include $(CFG_SRC_DIR)/mk/tests.mk
283+
CFG_INFO := $(info cfg: including clean rules)
279284
include $(CFG_SRC_DIR)/mk/clean.mk
280285
endif

0 commit comments

Comments
 (0)