⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 267715 in webkit


Ignore:
Timestamp:
Sep 28, 2020, 2:11:41 PM (6 years ago)
Author:
Keith Rollin
Message:

Print message saying what project is being built
https://bugs.webkit.org/show_bug.cgi?id=216865
<rdar://problem/69408135>

Reviewed by Andy Estes.

XCBuild removes the progress messages saying which project/target is
being built. We can't show the target, but update the Makefiles to at
least show which project is being built.

  • Makefile.shared:
Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/ChangeLog

    r267653 r267715  
     12020-09-28  Keith Rollin  <krollin@apple.com>
     2
     3        Print message saying what project is being built
     4        https://bugs.webkit.org/show_bug.cgi?id=216865
     5        <rdar://problem/69408135>
     6
     7        Reviewed by Andy Estes.
     8
     9        XCBuild removes the progress messages saying which project/target is
     10        being built. We can't show the target, but update the Makefiles to at
     11        least show which project is being built.
     12
     13        * Makefile.shared:
     14
    1152020-09-27  Philippe Normand  <pnormand@igalia.com>
    216
  • trunk/Makefile.shared

    r267458 r267715  
    100100        ( \
    101101                [[ -t 1 ]] && COLOR_DIAGNOSTICS_ARG="COLOR_DIAGNOSTICS=YES"; \
     102                echo; \
     103                echo "===== BUILDING $$(basename $(PATH_FROM_ROOT)) ====="; \
     104                echo; \
    102105                $1 xcodebuild $(OTHER_OPTIONS) $(XCODE_OPTIONS) $2 | $(OUTPUT_FILTER) && exit $${PIPESTATUS[0]} \
    103106        )
Note: See TracChangeset for help on using the changeset viewer.