Changeset 688 for trunk/kBuild/tools


Ignore:
Timestamp:
Dec 8, 2006, 6:44:22 AM (19 years ago)
Author:
bird
Message:

more or less completed the fetch feature.

Location:
trunk/kBuild/tools
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/kBuild/tools/TAR.kmk

    r667 r688  
    5252define TOOL_TAR_UNPACK_CMDS
    5353        $(TOOL_TAR_UNPACK) -x $(flags) -C $(subst G:,,$(inst)) -f $(archive)
    54         $(TOOL_TAR_UNPACK) -t $(flags) -f $(archive)| $(SED) -e 's|^|$(inst)|g' > $(out)
     54        $(TOOL_TAR_UNPACK) -t $(flags) -f $(archive) > $(out)
    5555endef
    5656else
    5757define TOOL_TAR_UNPACK_CMDS
    5858        $(TOOL_TAR_UNPACK) -x $(flags) -C $(inst) -f $(archive)
    59         $(TOOL_TAR_UNPACK) -t $(flags) -f $(archive)| $(SED) -e 's|^|$(inst)|g' > $(out)
     59        $(TOOL_TAR_UNPACK) -t $(flags) -f $(archive) > $(out)
    6060endef
    6161endif
  • trunk/kBuild/tools/TARGZ.kmk

    r667 r688  
    5151define TOOL_TARGZ_UNPACK_CMDS
    5252        $(TOOL_TARGZ_UNPACK) -x $(flags) -C $(inst) -f $(archive)
    53         $(TOOL_TARGZ_UNPACK) -t $(flags) -f $(archive) | $(SED) -e 's|^|$(inst)|g' > $(out)
     53        $(TOOL_TARGZ_UNPACK) -t $(flags) -f $(archive) > $(out)
    5454endef
    5555
  • trunk/kBuild/tools/ZIP.kmk

    r681 r688  
    5454                -e '/ [0-2][0-9]:[0-6][0-9]/!d' \
    5555                -e 's/^.* [0-2][0-9]:[0-6][0-9]   //' \
    56                 -e 's|^|$(inst)|' \
    5756                > $(out)
    5857endef
Note: See TracChangeset for help on using the changeset viewer.