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

Changeset 267441 in webkit


Ignore:
Timestamp:
Sep 22, 2020, 3:26:39 PM (6 years ago)
Author:
Keith Rollin
Message:

Refactor build rules in Makefiles and Makefile.shared
https://bugs.webkit.org/show_bug.cgi?id=216806
<rdar://problem/69332316>

Reviewed by David Kilzer.

Build fix: Previous change for this bug broke the ability to perform a
build with just make, due to that code path invoking
set-webkit-configuration with no parameters, which causes that
script to error-out.

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

Legend:

Unmodified
Added
Removed
  • trunk/ChangeLog

    r267424 r267441  
     12020-09-22  Keith Rollin  <krollin@apple.com>
     2
     3        Refactor build rules in Makefiles and Makefile.shared
     4        https://bugs.webkit.org/show_bug.cgi?id=216806
     5        <rdar://problem/69332316>
     6
     7        Reviewed by David Kilzer.
     8
     9        Build fix: Previous change for this bug broke the ability to perform a
     10        build with just `make`, due to that code path invoking
     11        `set-webkit-configuration` with no parameters, which causes that
     12        script to error-out.
     13
     14        * Makefile.shared:
     15
    1162020-09-22  Keith Rollin  <krollin@apple.com>
    217
  • trunk/Makefile.shared

    r267424 r267441  
    105105
    106106all:
     107ifneq (,$(strip $(ASAN_OPTION) $(TSAN_OPTION) $(WK_LTO_OPTION)))
    107108        @$(call set_webkit_configuration,)
     109endif
    108110        @$(call invoke_xcode,,GCC_PREPROCESSOR_DEFINITIONS='$(GCC_PREPROCESSOR_ADDITIONS) $$(inherited)')
    109111
Note: See TracChangeset for help on using the changeset viewer.