diff options
author | Enji Cooper <ngie@FreeBSD.org> | 2017-09-08 04:33:24 +0000 |
---|---|---|
committer | Enji Cooper <ngie@FreeBSD.org> | 2017-09-08 04:33:24 +0000 |
commit | e3e993b10736449ebc7eebd4a112c029b26b908c (patch) | |
tree | d861f1894ec79575399e1a9e2cb30eb28e669c37 /Makefile.libcompat | |
parent | aa729c1314beea5dc8e68a110b8c7e4c265ab4a9 (diff) | |
download | src-test2-e3e993b10736449ebc7eebd4a112c029b26b908c.tar.gz src-test2-e3e993b10736449ebc7eebd4a112c029b26b908c.zip |
Notes
Diffstat (limited to 'Makefile.libcompat')
-rw-r--r-- | Makefile.libcompat | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.libcompat b/Makefile.libcompat index 420b15c6942c..0240f168db0d 100644 --- a/Makefile.libcompat +++ b/Makefile.libcompat @@ -161,7 +161,7 @@ build${libcompat}: .PHONY .endfor ${_+_}cd ${.CURDIR}; \ ${LIBCOMPATWMAKE} -f Makefile.inc1 -DNO_FSCHG libraries -.if ${libcompat} == "32" +.if ${libcompat} == "32" && !defined(NO_RTLD) .for _t in obj all ${_+_}cd ${.CURDIR}/libexec/rtld-elf; PROG=ld-elf32.so.1 ${LIBCOMPATWMAKE} \ -DNO_FSCHG DIRPRFX=libexec/rtld-elf/ ${_t} @@ -174,7 +174,7 @@ distribute${libcompat} install${libcompat}: .PHONY .for _dir in ${_LC_LIBDIRS.yes} ${_+_}cd ${.CURDIR}/${_dir}; ${LIBCOMPATIMAKE} ${.TARGET:S/${libcompat}$//} .endfor -.if ${libcompat} == "32" +.if ${libcompat} == "32" && !defined(NO_RTLD) ${_+_}cd ${.CURDIR}/libexec/rtld-elf; \ PROG=ld-elf32.so.1 ${LIBCOMPATIMAKE} ${.TARGET:S/32$//} ${_+_}cd ${.CURDIR}/usr.bin/ldd; PROG=ldd32 ${LIBCOMPATIMAKE} \ |