Changeset 692 for trunk/kBuild/tools/ZIP.kmk
- Timestamp:
- Dec 8, 2006, 11:31:16 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/kBuild/tools/ZIP.kmk
r688 r692 29 29 # Tool Specific Properties 30 30 ifndef TOOL_ZIP_UNPACK 31 TOOL_ZIP_UNPACK := $(wildcard $(PATH_DEVTOOLS_BLD)/unzip $(HOSTSUFF_EXE))31 TOOL_ZIP_UNPACK := $(wildcard $(PATH_DEVTOOLS_BLD)/unzip/v*/unzip$(HOSTSUFF_EXE)) 32 32 ifeq ($(TOOL_ZIP_UNPACK),) 33 TOOL_ZIP_UNPACK := $(wildcard $(PATH_DEVTOOLS_BLD)/zip/v*/unzip$(HOSTSUFF_EXE)) 34 endif 35 ifeq ($(TOOL_ZIP_UNPACK),) 36 TOOL_ZIP_UNPACK := $(wildcard $(PATH_DEVTOOLS_BLD)/bin/unzip$(HOSTSUFF_EXE)) 37 endif 38 ifneq ($(TOOL_ZIP_UNPACK),) 39 TOOL_ZIP_UNPACK := $(lastword $(sort $(TOOL_ZIP_UNPACK))) 40 else 33 41 TOOL_ZIP_UNPACK := unzip$(HOSTSUFF_EXE) 34 42 endif … … 36 44 TOOL_ZIP_UNPACK := $(TOOL_ZIP_UNPACK) 37 45 endif 46 #ifndef TOOL_ZIP_PACK 47 # TOOL_ZIP_PACK := $(wildcard $(PATH_DEVTOOLS_BLD)/zip/v*/zip$(HOSTSUFF_EXE)) 48 # ifeq ($(TOOL_ZIP_PACK),) 49 # TOOL_ZIP_PACK := $(wildcard $(PATH_DEVTOOLS_BLD)/unzip/v*/zip$(HOSTSUFF_EXE)) 50 # endif 51 # ifeq ($(TOOL_ZIP_PACK),) 52 # TOOL_ZIP_PACK := $(wildcard $(PATH_DEVTOOLS_BLD)/bin/zip$(HOSTSUFF_EXE)) 53 # endif 54 # ifneq ($(TOOL_ZIP_PACK),) 55 # TOOL_ZIP_PACK := $(lastword $(sort $(TOOL_ZIP_PACK))) 56 # else 57 # TOOL_ZIP_PACK := zip$(HOSTSUFF_EXE) 58 # endif 59 #else 60 # TOOL_ZIP_PACK := $(TOOL_ZIP_PACK) 61 #endif 38 62 39 63 # General Properties used by kBuild
Note:
See TracChangeset
for help on using the changeset viewer.