Changeset 2326 for branches/kBuild-0.1.5/kBuild/tools/TAR.kmk
- Timestamp:
- Apr 10, 2009, 6:18:27 PM (16 years ago)
- Location:
- branches/kBuild-0.1.5
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/kBuild-0.1.5
-
branches/kBuild-0.1.5/kBuild/tools/TAR.kmk
r2243 r2326 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.