Ignore:
Timestamp:
Dec 8, 2006, 11:31:16 PM (19 years ago)
Author:
bird
Message:

tools location is being cleaned up.

File:
1 edited

Legend:

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

    r688 r692  
    2828
    2929# Tool Specific Properties
    30 ifndef TOOL_TARGZ_UNPACK
    31  TOOL_TARGZ_UNPACK := $(wildcard $(PATH_DEVTOOLS_BLD)/tar$(HOSTSUFF_EXE))
    32  ifeq ($(TOOL_TARGZ_UNPACK),)
    33   TOOL_TARGZ_UNPACK := tar$(HOSTSUFF_EXE)
     30ifndef TOOL_TARGZ_TAR
     31 TOOL_TARGZ_TAR := $(wildcard $(PATH_DEVTOOLS_BLD)/tar/v*/tar$(HOSTSUFF_EXE))
     32 ifeq ($(TOOL_TARGZ_TAR),)
     33  TOOL_TARGZ_TAR := $(wildcard $(PATH_DEVTOOLS_BLD)/bin/tar$(HOSTSUFF_EXE))
     34 endif
     35 ifeq ($(TOOL_TARGZ_TAR),)
     36  TOOL_TARGZ_TAR := $(TOOL_TAR_TAR)
     37 endif
     38 ifeq ($(TOOL_TARGZ_TAR),)
     39  TOOL_TARGZ_TAR := $(lastword $(sort $(TOOL_TARGZ_TAR)))
     40 else
     41  TOOL_TARGZ_TAR := tar$(HOSTSUFF_EXE)
    3442 endif
    3543else
    36  TOOL_TARGZ_UNPACK := $(TOOL_TARGZ_UNPACK)
     44 TOOL_TARGZ_TAR := $(TOOL_TARGZ_TAR)
    3745endif
     46TOOL_TARGZ_UNPACK ?= $(TOOL_TARGZ_TAR)
    3847
    3948# General Properties used by kBuild
Note: See TracChangeset for help on using the changeset viewer.