- Timestamp:
- Jul 6, 2020 9:29:00 AM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/kBuild/header.kmk
r3344 r3402 406 406 407 407 # 408 # Feature indicators. 409 # 410 411 ## File quoting functions. 412 if1of (quote, $(KMK_FEATURES)) 413 KMK_WITH_QUOTING := 1 414 endif 415 416 ## Version sorting and comparing. 417 if1of (versort, $(KMK_FEATURES)) 418 KMK_WITH_VERSION_COMPARE := 1 419 endif 420 421 422 # 408 423 # Paths and stuff. 409 424 # 410 411 ## Cache this query.412 if1of (quote,$(KMK_FEATURES))413 KMK_WITH_QUOTING := 1414 endif415 425 416 426 # Adjust DEPTH first. … … 1676 1686 ifdef KBUILD_QUIET 1677 1687 # No output 1678 QUIET := @1679 QUIET2 := @1680 MSG_L1 1681 MSG_L2 =1688 QUIET := @ 1689 QUIET2 := @ 1690 MSG_L1 := 1691 MSG_L2 := 1682 1692 else 1683 1693 ifndef KBUILD_VERBOSE … … 1686 1696 QUIET2 := @ 1687 1697 MSG_L1 ?= %@$(ECHO) "kBuild: $1" 1688 MSG_L2 1698 MSG_L2 := 1689 1699 else ifeq ($(KBUILD_VERBOSE),1) 1690 1700 # A bit more output … … 1692 1702 QUIET2 := @ 1693 1703 MSG_L1 ?= %@$(ECHO) "kBuild: $1 $2" 1694 MSG_L2 1704 MSG_L2 := 1695 1705 else ifeq ($(KBUILD_VERBOSE),2) 1696 1706 # Lot more output
Note:
See TracChangeset
for help on using the changeset viewer.