Annotation For ldconfig.init.mk
Logged in as anonymous

Origin for each line in ldconfig.init.mk from check-in 7a1e7f4a58:

7a1e7f4a58 2019-10-21    1: LDCONFIG_PATHS?=/lib /usr/lib /usr/local/lib /usr/pkg/lib
7a1e7f4a58 2019-10-21    2: LDCONFIG_LOCAL_DIRS?=/usr/local/libdata/ldconfig
7a1e7f4a58 2019-10-21    3: 
7a1e7f4a58 2019-10-21    4: .for path in ${LDCONFIG_PATHS} /etc/ld-elf.so.conf
7a1e7f4a58 2019-10-21    5: .if exists(${path})
7a1e7f4a58 2019-10-21    6: ldc+=${path}
7a1e7f4a58 2019-10-21    7: .endif
7a1e7f4a58 2019-10-21    8: .endfor
7a1e7f4a58 2019-10-21    9: 
7a1e7f4a58 2019-10-21   10: .for dir in ${LDCONFIG_LOCAL_DIRS}
7a1e7f4a58 2019-10-21   11: .if exists(${dir})
7a1e7f4a58 2019-10-21   12: ldc+=${:!find ${dir} -type f!}
7a1e7f4a58 2019-10-21   13: .endif
7a1e7f4a58 2019-10-21   14: .endfor
7a1e7f4a58 2019-10-21   15: 
7a1e7f4a58 2019-10-21   16: ldconfig: mountlate
7a1e7f4a58 2019-10-21   17: 	echo "MRC:$@> Initializing shared libraries: ${ldc}"; \
7a1e7f4a58 2019-10-21   18: 	ldconfig -elf ${ldc}