Lines of savecore.init from check-in 5062c9b6fc that are changed by the sequence of edits moving toward check-in 47c6cc1171:
1: # vim:ft=make:
2:
3: DUMPDIR?=/var/crash
4: CRASHINFO_ENABLE?=no
5:
6: savecore: dumpon
5062c9b6fc 2019-10-19 7: .if empty(${DUMPDEV:tl:Mno}) && exists(${DUMPDEV}) && exists(${DUMPDIR})
8: : Saving coredump.
9: savecore ${DUMPDIR} ${DUMPDEV}
5062c9b6fc 2019-10-19 10: .if empty(${CRASHINFO_ENABLE:tl:Mno})
11: crashinfo -d ${DUMPDIR}
12: .endif
13: .endif