Changeset 86347 in vbox for trunk/src/VBox/Installer
- Timestamp:
- Sep 30, 2020 1:33:04 PM (4 years ago)
- svn:sync-xref-src-repo-rev:
- 140636
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Installer/linux/Makefile-header.gmk
r84947 r86347 93 93 endif 94 94 95 # VBOX_KBUILD_TYPE = release|debug|profile|strict 95 # VBOX_KBUILD_TYPE = release|debug|profile|strict|asan 96 96 ifdef VBOX_KBUILD_TYPE 97 97 VBOX_KBUILD_TYPE_VAR := VBOX_KBUILD_TYPE 98 ifneq ($(filter-out release profile debug strict ,$(VBOX_KBUILD_TYPE)),)98 ifneq ($(filter-out release profile debug strict asan,$(VBOX_KBUILD_TYPE)),) 99 99 $(warning Ignoring unknown VBOX_KBUILD_TYPE value '$(VBOX_KBUILD_TYPE)'.) 100 100 VBOX_KBUILD_TYPE := … … 104 104 VBOX_KBUILD_TYPE_VAR := KBUILD_TYPE 105 105 VBOX_KBUILD_TYPE := $(KBUILD_TYPE) 106 ifneq ($(filter-out release profile debug strict ,$(KBUILD_TYPE)),)106 ifneq ($(filter-out release profile debug strict asan,$(KBUILD_TYPE)),) 107 107 $(warning Ignoring unknown KBUILD_TYPE value '$(KBUILD_TYPE)'.) 108 108 VBOX_KBUILD_TYPE := … … 113 113 VBOX_KBUILD_TYPE_VAR := BUILD_TYPE 114 114 VBOX_KBUILD_TYPE := $(BUILD_TYPE) 115 ifneq ($(filter-out release profile debug strict ,$(BUILD_TYPE)),)115 ifneq ($(filter-out release profile debug strict asan,$(BUILD_TYPE)),) 116 116 $(warning Ignoring unknown BUILD_TYPE value '$(BUILD_TYPE)'.) 117 117 VBOX_KBUILD_TYPE :=
Note:
See TracChangeset
for help on using the changeset viewer.