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/ZIP.kmk

    r688 r692  
    2929# Tool Specific Properties
    3030ifndef TOOL_ZIP_UNPACK
    31  TOOL_ZIP_UNPACK := $(wildcard $(PATH_DEVTOOLS_BLD)/unzip$(HOSTSUFF_EXE))
     31 TOOL_ZIP_UNPACK := $(wildcard $(PATH_DEVTOOLS_BLD)/unzip/v*/unzip$(HOSTSUFF_EXE))
    3232 ifeq ($(TOOL_ZIP_UNPACK),)
     33  TOOL_ZIP_UNPACK := $(wildcard $(PATH_DEVTOOLS_BLD)/zip/v*/unzip$(HOSTSUFF_EXE))
     34 endif
     35 ifeq ($(TOOL_ZIP_UNPACK),)
     36  TOOL_ZIP_UNPACK := $(wildcard $(PATH_DEVTOOLS_BLD)/bin/unzip$(HOSTSUFF_EXE))
     37 endif
     38 ifneq ($(TOOL_ZIP_UNPACK),)
     39  TOOL_ZIP_UNPACK := $(lastword $(sort $(TOOL_ZIP_UNPACK)))
     40 else
    3341  TOOL_ZIP_UNPACK := unzip$(HOSTSUFF_EXE)
    3442 endif
     
    3644 TOOL_ZIP_UNPACK := $(TOOL_ZIP_UNPACK)
    3745endif
     46#ifndef TOOL_ZIP_PACK
     47# TOOL_ZIP_PACK := $(wildcard $(PATH_DEVTOOLS_BLD)/zip/v*/zip$(HOSTSUFF_EXE))
     48# ifeq ($(TOOL_ZIP_PACK),)
     49#  TOOL_ZIP_PACK := $(wildcard $(PATH_DEVTOOLS_BLD)/unzip/v*/zip$(HOSTSUFF_EXE))
     50# endif
     51# ifeq ($(TOOL_ZIP_PACK),)
     52#  TOOL_ZIP_PACK := $(wildcard $(PATH_DEVTOOLS_BLD)/bin/zip$(HOSTSUFF_EXE))
     53# endif
     54# ifneq ($(TOOL_ZIP_PACK),)
     55#  TOOL_ZIP_PACK := $(lastword $(sort $(TOOL_ZIP_PACK)))
     56# else
     57#  TOOL_ZIP_PACK := zip$(HOSTSUFF_EXE)
     58# endif
     59#else
     60# TOOL_ZIP_PACK := $(TOOL_ZIP_PACK)
     61#endif
    3862
    3963# General Properties used by kBuild
Note: See TracChangeset for help on using the changeset viewer.