diff options
author | spreis <spreis@yandex-team.ru> | 2022-05-20 18:16:21 +0300 |
---|---|---|
committer | spreis <spreis@yandex-team.ru> | 2022-05-20 18:16:21 +0300 |
commit | 92394d748cf66c288843ce740d2d37a94f67bf49 (patch) | |
tree | b78afa516d93f0e984e48791331f0038197119ad | |
parent | f66694e40d87cadfe3b42db625f6733451d97f9d (diff) | |
download | ydb-92394d748cf66c288843ce740d2d37a94f67bf49.tar.gz |
Fix STRIP for ALL_RESOURCE_FILES
ref:75ef2e5f6effab0e25f04e2e97dc182edf5a136c
-rw-r--r-- | build/ymake.core.conf | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build/ymake.core.conf b/build/ymake.core.conf index d811639e365..0f19c12cb8b 100644 --- a/build/ymake.core.conf +++ b/build/ymake.core.conf @@ -5401,7 +5401,7 @@ macro _ARF_HELPER(Args...) { ### Note: Wildcards are not allowed neither as Ext nor in Dirs macro ALL_RESOURCE_FILES(EXT, PREFIX="", STRIP="", DIRS...) { _GLOB(ALL_RES_$EXT ${suf=/*.$EXT:DIRS}) - _ARF_HELPER(${pre=PREFIX :PREFIX} STRIP ${ARCADIA_ROOT}/${MODDIR}${pre=/:STRIP} ${pre=$ALL_RES_:EXT}) + _ARF_HELPER(${pre=PREFIX :PREFIX} STRIP ${ARCADIA_ROOT}/${MODDIR}/${STRIP} ${pre=$ALL_RES_:EXT}) } |