diff options
author | jkh <jkh@FreeBSD.org> | 1998-09-23 08:06:30 +0000 |
---|---|---|
committer | jkh <jkh@FreeBSD.org> | 1998-09-23 08:06:30 +0000 |
commit | 0929d70022b41699c512bc1265bd081a55757848 (patch) | |
tree | a73b4dd7e09ce65b3b0b8b9dd96b58e252ff45a4 /etc | |
parent | f99b15f20c02d21095a0ce93ce7632ae3d813c35 (diff) | |
download | FreeBSD-src-0929d70022b41699c512bc1265bd081a55757848.zip FreeBSD-src-0929d70022b41699c512bc1265bd081a55757848.tar.gz |
initialize /etc/objformat for new installs, just to be sure.
Diffstat (limited to 'etc')
-rw-r--r-- | etc/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/etc/Makefile b/etc/Makefile index 880a91c..c02ba35 100644 --- a/etc/Makefile +++ b/etc/Makefile @@ -1,5 +1,5 @@ # from: @(#)Makefile 5.11 (Berkeley) 5/21/91 -# $Id: Makefile,v 1.173 1998/09/19 22:42:01 obrien Exp $ +# $Id: Makefile,v 1.174 1998/09/22 15:10:18 max Exp $ SUBDIR= sendmail @@ -41,6 +41,10 @@ etc: distribute: cd ${.CURDIR} ; ${MAKE} distribution DESTDIR=${DISTDIR}/bin +.if defined(OBJFORMAT) + echo OBJFORMAT=${OBJFORMAT} > ${DISTDIR}/bin/etc/objformat +.endif + @echo distribution: (cd ${.CURDIR}; \ |