Deleted Added
full compact
Makefile (245318) Makefile (245440)
1# from: @(#)Makefile 5.11 (Berkeley) 5/21/91
1# from: @(#)Makefile 5.11 (Berkeley) 5/21/91
2# $FreeBSD: head/etc/Makefile 245318 2013-01-11 23:44:35Z brooks $
2# $FreeBSD: head/etc/Makefile 245440 2013-01-15 00:12:34Z brooks $
3
4.include <bsd.own.mk>
5
6.if ${MK_SENDMAIL} != "no"
7SUBDIR= sendmail
8.endif
9
10BIN1= crontab \

--- 275 unchanged lines hidden (view full) ---

286 ${DESTDIR}/boot/device.hints
287.endif
288.endif
289.if ${MK_NIS} == "no"
290 sed -i "" -e 's/.*_compat:/# &/' -e 's/compat$$/files/' \
291 ${DESTDIR}/etc/nsswitch.conf
292.endif
293
3
4.include <bsd.own.mk>
5
6.if ${MK_SENDMAIL} != "no"
7SUBDIR= sendmail
8.endif
9
10BIN1= crontab \

--- 275 unchanged lines hidden (view full) ---

286 ${DESTDIR}/boot/device.hints
287.endif
288.endif
289.if ${MK_NIS} == "no"
290 sed -i "" -e 's/.*_compat:/# &/' -e 's/compat$$/files/' \
291 ${DESTDIR}/etc/nsswitch.conf
292.endif
293
294MTREE_CMD?= mtree
295
294distrib-dirs:
296distrib-dirs:
295 mtree -eU ${MTREE_FOLLOWS_SYMLINKS} -f ${.CURDIR}/mtree/BSD.root.dist -p ${DESTDIR}/
296 mtree -eU ${MTREE_FOLLOWS_SYMLINKS} -f ${.CURDIR}/mtree/BSD.var.dist -p ${DESTDIR}/var
297 mtree -eU ${MTREE_FOLLOWS_SYMLINKS} -f ${.CURDIR}/mtree/BSD.usr.dist -p ${DESTDIR}/usr
298 mtree -eU ${MTREE_FOLLOWS_SYMLINKS} -f ${.CURDIR}/mtree/BSD.include.dist \
297 ${MTREE_CMD} -eU ${MTREE_FOLLOWS_SYMLINKS} -f ${.CURDIR}/mtree/BSD.root.dist -p ${DESTDIR}/
298 ${MTREE_CMD} -eU ${MTREE_FOLLOWS_SYMLINKS} -f ${.CURDIR}/mtree/BSD.var.dist -p ${DESTDIR}/var
299 ${MTREE_CMD} -eU ${MTREE_FOLLOWS_SYMLINKS} -f ${.CURDIR}/mtree/BSD.usr.dist -p ${DESTDIR}/usr
300 ${MTREE_CMD} -eU ${MTREE_FOLLOWS_SYMLINKS} -f ${.CURDIR}/mtree/BSD.include.dist \
299 -p ${DESTDIR}/usr/include
300.if ${MK_BIND_LIBS} != "no"
301 -p ${DESTDIR}/usr/include
302.if ${MK_BIND_LIBS} != "no"
301 mtree -deU ${MTREE_FOLLOWS_SYMLINKS} -f ${.CURDIR}/mtree/BIND.include.dist \
303 ${MTREE_CMD} -deU ${MTREE_FOLLOWS_SYMLINKS} -f ${.CURDIR}/mtree/BIND.include.dist \
302 -p ${DESTDIR}/usr/include
303.endif
304.if ${MK_BIND_MTREE} != "no"
304 -p ${DESTDIR}/usr/include
305.endif
306.if ${MK_BIND_MTREE} != "no"
305 mtree -deU ${MTREE_FOLLOWS_SYMLINKS} -f ${.CURDIR}/mtree/BIND.chroot.dist \
307 ${MTREE_CMD} -deU ${MTREE_FOLLOWS_SYMLINKS} -f ${.CURDIR}/mtree/BIND.chroot.dist \
306 -p ${DESTDIR}/var/named
307.endif
308.if ${MK_GROFF} != "no"
308 -p ${DESTDIR}/var/named
309.endif
310.if ${MK_GROFF} != "no"
309 mtree -deU ${MTREE_FOLLOWS_SYMLINKS} -f ${.CURDIR}/mtree/BSD.groff.dist -p ${DESTDIR}/usr
311 ${MTREE_CMD} -deU ${MTREE_FOLLOWS_SYMLINKS} -f ${.CURDIR}/mtree/BSD.groff.dist -p ${DESTDIR}/usr
310.endif
311.if ${MK_SENDMAIL} != "no"
312.endif
313.if ${MK_SENDMAIL} != "no"
312 mtree -deU ${MTREE_FOLLOWS_SYMLINKS} -f ${.CURDIR}/mtree/BSD.sendmail.dist -p ${DESTDIR}/
314 ${MTREE_CMD} -deU ${MTREE_FOLLOWS_SYMLINKS} -f ${.CURDIR}/mtree/BSD.sendmail.dist -p ${DESTDIR}/
313.endif
314 cd ${DESTDIR}/; rm -f ${DESTDIR}/sys; ln -s usr/src/sys sys
315 cd ${DESTDIR}/usr/share/man/en.ISO8859-1; ln -sf ../man* .
316 cd ${DESTDIR}/usr/share/man/en.UTF-8; ln -sf ../man* .
317 cd ${DESTDIR}/usr/share/man; \
318 set - `grep "^[a-zA-Z]" ${.CURDIR}/man.alias`; \
319 while [ $$# -gt 0 ] ; \
320 do \

--- 30 unchanged lines hidden ---
315.endif
316 cd ${DESTDIR}/; rm -f ${DESTDIR}/sys; ln -s usr/src/sys sys
317 cd ${DESTDIR}/usr/share/man/en.ISO8859-1; ln -sf ../man* .
318 cd ${DESTDIR}/usr/share/man/en.UTF-8; ln -sf ../man* .
319 cd ${DESTDIR}/usr/share/man; \
320 set - `grep "^[a-zA-Z]" ${.CURDIR}/man.alias`; \
321 while [ $$# -gt 0 ] ; \
322 do \

--- 30 unchanged lines hidden ---