Changeset 1503 for trunk/src/kmk/read.c


Ignore:
Timestamp:
Apr 9, 2008, 1:16:53 AM (17 years ago)
Author:
bird
Message:

Environment / globals cleanup. The new policy is to use KBUILD_ and KMK_ prefixes for things that is put into or/and picked from the environment. This will take a good while to complete.

Renamed (old still valid for some versions):
PATH_KBUILD -> KBUILD_PATH
PATH_KBUILD_BIN -> KBUILD_BIN_PATH
BUILD_PLATFORM -> KBUILD_HOST
BUILD_PLATFORM_ARCH -> KBUILD_HOST_ARCH
BUILD_PLATFORM_CPU -> KBUILD_HOST_CPU

Renamed - old not checked:
MAKELEVEL -> KMK_LEVEL
KMKFLAGS -> KMK_FLAGS
MAKEFLAGS -> KMK_FLAGS
MAKEOVERRIDES -> KMK_OVERRIDES

Removed:
MAKE_VERSION
MFLAGS

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/kmk/read.c

    r1499 r1503  
    36513651#endif
    36523652#ifdef KMK
    3653   /* Add $(PATH_KBUILD). */
     3653  /* Add $(KBUILD_PATH). */
    36543654  {
    3655     size_t len = strlen (get_path_kbuild ());
    3656     dirs[idx++] = strcache_add_len (get_path_kbuild (), len);
     3655    size_t len = strlen (get_kbuild_path ());
     3656    dirs[idx++] = strcache_add_len (get_kbuild_path (), len);
    36573657    if (len > max_incl_len)
    36583658      max_incl_len = len;
Note: See TracChangeset for help on using the changeset viewer.