Changeset 21015 in vbox for trunk/src/VBox/Additions/linux/sharedfolders
- Timestamp:
- Jun 29, 2009 7:30:52 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/linux/sharedfolders/Makefile.module
r17935 r21015 24 24 # While at it, warn about BUILD_* vars found to help with user problems. 25 25 # 26 ifeq ($(filter-out x86_64 amd64 AMD64,$(shell uname -m)),) 27 BUILD_TARGET_ARCH_DEF := amd64 28 else 29 BUILD_TARGET_ARCH_DEF := x86 30 endif 26 31 ifneq ($(filter-out amd64 x86,$(BUILD_TARGET_ARCH)),) 27 32 $(warning Ignoring unknown BUILD_TARGET_ARCH value '$(BUILD_TARGET_ARCH)'.) … … 35 40 BUILD_TARGET_ARCH := x86 36 41 else 37 ifeq ($(filter-out x86_64 amd64 AMD64,$(shell uname -m)),) 38 BUILD_TARGET_ARCH := amd64 39 else 40 BUILD_TARGET_ARCH := x86 41 endif 42 BUILD_TARGET_ARCH := $(BUILD_TARGET_ARCH_DEF) 42 43 endif 43 44 endif 44 45 else 45 $(warning Using BUILD_TARGET_ARCH='$(BUILD_TARGET_ARCH)' from the $(origin BUILD_TARGET_ARCH).) 46 ifneq ($(BUILD_TARGET_ARCH),$(BUILD_TARGET_ARCH_DEF)) 47 $(warning Using BUILD_TARGET_ARCH='$(BUILD_TARGET_ARCH)' from the $(origin BUILD_TARGET_ARCH).) 48 endif 46 49 endif 47 50 … … 53 56 BUILD_TYPE := release 54 57 else 55 $(warning Using BUILD_TYPE='$(BUILD_TYPE)' from the $(origin BUILD_TYPE).) 58 ifneq ($(BUILD_TYPE),release) 59 $(warning Using BUILD_TYPE='$(BUILD_TYPE)' from the $(origin BUILD_TYPE).) 60 endif 56 61 endif 57 62
Note:
See TracChangeset
for help on using the changeset viewer.