Annotation For ldconfig.init
Logged in as anonymous

Origin for each line in ldconfig.init from check-in 8f80b79392:

5062c9b6fc 2019-10-19    1: # vim:ft=make:
5062c9b6fc 2019-10-19    2: 
5062c9b6fc 2019-10-19    3: LDCONFIG_PATHS?=/lib /usr/lib /usr/local/lib /usr/pkg/lib
5062c9b6fc 2019-10-19    4: LDCONFIG_LOCAL_DIRS?=/usr/local/libdata/ldconfig
5062c9b6fc 2019-10-19    5: 
5062c9b6fc 2019-10-19    6: .for ldc in ${LDCONFIG_PATHS} /etc/ld-elf.so.conf
5062c9b6fc 2019-10-19    7: .if exists(${ldc})
5062c9b6fc 2019-10-19    8: ldc+=${ldc}
5062c9b6fc 2019-10-19    9: .endif
5062c9b6fc 2019-10-19   10: .endfor
5062c9b6fc 2019-10-19   11: 
8f80b79392 2019-10-20   12: .for dir in ${LDCONFIG_LOCAL_DIRS}
5062c9b6fc 2019-10-19   13: .if exists(${dir})
5062c9b6fc 2019-10-19   14: ldc+=${:!find ${dir} -type f!}
5062c9b6fc 2019-10-19   15: .endif
5062c9b6fc 2019-10-19   16: .endfor
5062c9b6fc 2019-10-19   17: 
5062c9b6fc 2019-10-19   18: ldconfig: mountlate
5062c9b6fc 2019-10-19   19: 	: Initializing ldconfig.
5062c9b6fc 2019-10-19   20: 	ldconfig -elf ${ldc}