Changeset 59301 in vbox for trunk/src/VBox/ValidationKit/bootsectors
- Timestamp:
- Jan 9, 2016 9:10:03 PM (9 years ago)
- svn:sync-xref-src-repo-rev:
- 104959
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/bootsectors/Config.kmk
r59300 r59301 55 55 56 56 # NASM tool with dependency workarounds (change dir to force consistent results; add -MP). 57 # Requires http://permalink.gmane.org/gmane.comp.lang.nasm.devel/3704 to work. 57 58 include $(KBUILD_PATH)/tools/NASM.kmk 58 59 TOOL_VBoxNasm = Our version of the NASM tool 59 TOOL_VBoxNasm_PATH ?= $(PATH_TOOL_NASM) 60 ifneq ($(PATH_TOOL_NASM),) 60 ifndef TOOL_VBoxNasm_PATH 61 TOOL_VBoxNasm_PATH := $(firstword $(rsort $(wildcard $(KBUILD_DEVTOOLS_HST)/nasm/v*.*))) 62 if "$(TOOL_VBoxNasm_PATH)" == "" && "$(KBUILD_DEVTOOLS_HST_ALT)" != "" 63 TOOL_VBoxNasm_PATH := $(firstword $(rsort $(wildcard $(KBUILD_DEVTOOLS_HST_ALT)/nasm/v*.*))) 64 endif 65 endif 66 ifneq ($(TOOL_VBoxNasm_PATH),) 61 67 TOOL_VBoxNasm_AS ?= $(TOOL_VBoxNasm_PATH)/nasm$(HOSTSUFF_EXE) 62 68 else
Note:
See TracChangeset
for help on using the changeset viewer.