diff options
author | jb <jb@FreeBSD.org> | 1998-12-12 22:00:49 +0000 |
---|---|---|
committer | jb <jb@FreeBSD.org> | 1998-12-12 22:00:49 +0000 |
commit | 408b593e63067f9bddbb31c26edd2b9469d500ce (patch) | |
tree | 28af7c288824d5f29e482bac731a8ad4afa95f7a /etc | |
parent | 21b42c731e9d4dd0805ce9d50ac827a8ae7efe25 (diff) | |
download | FreeBSD-src-408b593e63067f9bddbb31c26edd2b9469d500ce.zip FreeBSD-src-408b593e63067f9bddbb31c26edd2b9469d500ce.tar.gz |
Back out revs 1.181 and 1.182 which upset a few people. I hope those
(3?) people will make an effort to help those who would have benefitted from
this change. And just telling them that they should read and understand
the significance of each message posted to -current is not really good
enough IMHO.
Diffstat (limited to 'etc')
-rw-r--r-- | etc/Makefile | 25 |
1 files changed, 1 insertions, 24 deletions
diff --git a/etc/Makefile b/etc/Makefile index e43a097..46f114e 100644 --- a/etc/Makefile +++ b/etc/Makefile @@ -1,5 +1,5 @@ # from: @(#)Makefile 5.11 (Berkeley) 5/21/91 -# $Id: Makefile,v 1.181 1998/12/10 05:34:11 jb Exp $ +# $Id: Makefile,v 1.182 1998/12/11 00:09:39 jb Exp $ SUBDIR= sendmail @@ -149,27 +149,4 @@ distrib-dirs: rm -rf POSIX; \ ln -s C POSIX -# -# Check for missing files in ${DESTDIR}/etc. -# -_etc_missing= -.for _f in ${BIN1} -_g=${_f:T} -.if !exists(${DESTDIR}/etc/$(_g)) -_etc_missing+=$(_f) -.endif -.endfor - -# -# Install only those files which don't exist in the destination -# directory. This will install new files, but not update existing -# (possibly customized) files. -# -install: -.if (${_etc_missing} != "") - cd ${.CURDIR}; \ - ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 644 ${_etc_missing} \ - ${DESTDIR}/etc -.endif - .include <bsd.prog.mk> |