Changeset 692 for trunk/kBuild/tools/TAR.kmk
- Timestamp:
- Dec 8, 2006, 11:31:16 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/kBuild/tools/TAR.kmk
r688 r692 28 28 29 29 # Tool Specific Properties 30 ifndef TOOL_TAR_UNPACK 31 TOOL_TAR_UNPACK := $(wildcard $(PATH_DEVTOOLS_BLD)/tar$(HOSTSUFF_EXE)) 32 ifeq ($(TOOL_TAR_UNPACK),) 33 TOOL_TAR_UNPACK := tar$(HOSTSUFF_EXE) 30 ifndef TOOL_TAR_TAR 31 TOOL_TAR_TAR := $(wildcard $(PATH_DEVTOOLS_BLD)/tar/v*/tar$(HOSTSUFF_EXE)) 32 ifeq ($(TOOL_TAR_TAR),) 33 TOOL_TAR_TAR := $(wildcard $(PATH_DEVTOOLS_BLD)/bin/tar$(HOSTSUFF_EXE)) 34 endif 35 ifeq ($(TOOL_TAR_TAR),) 36 TOOL_TAR_TAR := $(lastword $(sort $(TOOL_TAR_TAR))) 37 else 38 TOOL_TAR_TAR := tar$(HOSTSUFF_EXE) 34 39 endif 35 40 else 36 TOOL_TAR_ UNPACK := $(TOOL_TAR_UNPACK)41 TOOL_TAR_TAR := $(TOOL_TAR_TAR) 37 42 endif 43 TOOL_TAR_UNPACK ?= $(TOOL_TAR_TAR) 38 44 39 45 # General Properties used by kBuild
Note:
See TracChangeset
for help on using the changeset viewer.