Changeset 2275 for trunk/kBuild/tools/TAR.kmk
- Timestamp:
- Feb 21, 2009, 12:46:29 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/kBuild/tools/TAR.kmk
r2243 r2275 40 40 TOOL_TAR_TAR := $(wildcard $(PATH_DEVTOOLS_BLD)/bin/tar$(HOSTSUFF_EXE)) 41 41 endif 42 if eq ($(TOOL_TAR_TAR),)42 ifneq ($(TOOL_TAR_TAR),) 43 43 TOOL_TAR_TAR := $(lastword $(sort $(TOOL_TAR_TAR))) 44 44 else … … 65 65 define TOOL_TAR_UNPACK_CMDS 66 66 $(QUIET)$(TOOL_TAR_UNPACK) -x $(flags) -C $(subst G:,,$(inst)) -f $(archive) 67 $(QUIET)$(TOOL_TAR_UNPACK) -t $(f lags) -f $(archive) > $(out)67 $(QUIET)$(TOOL_TAR_UNPACK) -t $(filter-out -v --verbose,$(flags)) -f $(archive) > $(out) 68 68 endef 69 69 else 70 70 define TOOL_TAR_UNPACK_CMDS 71 71 $(QUIET)$(TOOL_TAR_UNPACK) -x $(flags) -C $(inst) -f $(archive) 72 $(QUIET)$(TOOL_TAR_UNPACK) -t $(f lags) -f $(archive) > $(out)72 $(QUIET)$(TOOL_TAR_UNPACK) -t $(filter-out -v --verbose,$(flags)) -f $(archive) > $(out) 73 73 endef 74 74 endif
Note:
See TracChangeset
for help on using the changeset viewer.