Commit f576b019 authored by Michael Shigorin's avatar Michael Shigorin Committed by Michael Shigorin

build-distro: trim BOOT_VOLI at 32 chars

The nice and pleasant effect of hitting this barrier is build process break at (almost) the very end of it.
parent 40e680e5
...@@ -8,7 +8,7 @@ BOOT_SYSI := $(META_SYSTEM_ID) ...@@ -8,7 +8,7 @@ BOOT_SYSI := $(META_SYSTEM_ID)
BOOT_PUBL := $(META_PUBLISHER) BOOT_PUBL := $(META_PUBLISHER)
BOOT_PREP := $(META_PREPARER) BOOT_PREP := $(META_PREPARER)
BOOT_APPI := $(META_APP_ID) BOOT_APPI := $(META_APP_ID)
BOOT_VOLI := $(META_VOL_ID) BOOT_VOLI := $(shell echo $(META_VOL_ID) | cut -c1-32)
BOOT_VOLS := $(META_VOL_SET) BOOT_VOLS := $(META_VOL_SET)
BOOT_BIBL := $(META_BIBLIO) BOOT_BIBL := $(META_BIBLIO)
BOOT_ABST := $(META_ABSTRACT) BOOT_ABST := $(META_ABSTRACT)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment