View | Details | Raw Unified | Return to bug 211564 | Differences between
and this patch

Collapse All | Expand All

(-)Makefile.inc1 (-1 / +1 lines)
Lines 1020-1026 Link Here
1020
	-mkdir ${DESTDIR}/${DISTDIR}/base
1020
	-mkdir ${DESTDIR}/${DISTDIR}/base
1021
	${_+_}cd ${.CURDIR}/etc; ${CROSSENV} PATH=${TMPPATH} ${MAKE} \
1021
	${_+_}cd ${.CURDIR}/etc; ${CROSSENV} PATH=${TMPPATH} ${MAKE} \
1022
	    METALOG=${METALOG} ${IMAKE_INSTALL} ${IMAKE_MTREE} \
1022
	    METALOG=${METALOG} ${IMAKE_INSTALL} ${IMAKE_MTREE} \
1023
	    DISTBASE=/base DESTDIR=${DESTDIR}/${DISTDIR}/base \
1023
	    DISTBASE=${DESTDIR}/base DESTDIR=${DESTDIR}/${DISTDIR}/base \
1024
	    LOCAL_MTREE=${LOCAL_MTREE:Q} distrib-dirs
1024
	    LOCAL_MTREE=${LOCAL_MTREE:Q} distrib-dirs
1025
.endif
1025
.endif
1026
	${_+_}cd ${.CURDIR}; ${IMAKE} re${.TARGET:S/world$//}; \
1026
	${_+_}cd ${.CURDIR}; ${IMAKE} re${.TARGET:S/world$//}; \
(-)etc/Makefile (-2 / +2 lines)
Lines 192-199 Link Here
192
	# Avoid installing tests here; "make distribution" will do this and
192
	# Avoid installing tests here; "make distribution" will do this and
193
	# correctly place them in the right location.
193
	# correctly place them in the right location.
194
	${_+_}cd ${.CURDIR} ; ${MAKE} MK_TESTS=no install \
194
	${_+_}cd ${.CURDIR} ; ${MAKE} MK_TESTS=no install \
195
	    DESTDIR=${DISTDIR}/${DISTRIBUTION}
195
	    DESTDIR=${DESTDIR}/${DISTDIR}/${DISTRIBUTION}
196
	${_+_}cd ${.CURDIR} ; ${MAKE} distribution DESTDIR=${DISTDIR}/${DISTRIBUTION}
196
	${_+_}cd ${.CURDIR} ; ${MAKE} distribution DESTDIR=${DESTDIR}/${DISTDIR}/${DISTRIBUTION}
197
197
198
.include <bsd.endian.mk>
198
.include <bsd.endian.mk>
199
.if ${TARGET_ENDIANNESS} == "1234"
199
.if ${TARGET_ENDIANNESS} == "1234"
(-)share/mk/bsd.subdir.mk (-1 / +1 lines)
Lines 82-88 Link Here
82
distribute: .MAKE
82
distribute: .MAKE
83
.for dist in ${DISTRIBUTION}
83
.for dist in ${DISTRIBUTION}
84
	${_+_}cd ${.CURDIR}; \
84
	${_+_}cd ${.CURDIR}; \
85
	    ${MAKE} install installconfig -DNO_SUBDIR DESTDIR=${DISTDIR}/${dist} SHARED=copies
85
	    ${MAKE} install installconfig -DNO_SUBDIR DESTDIR=${DESTDIR}/${DISTDIR}/${dist} SHARED=copies
86
.endfor
86
.endfor
87
.endif
87
.endif
88
# Convenience targets to run 'build${target}' and 'install${target}' when
88
# Convenience targets to run 'build${target}' and 'install${target}' when

Return to bug 211564