diff options
author | jb <jb@FreeBSD.org> | 1998-12-11 00:09:39 +0000 |
---|---|---|
committer | jb <jb@FreeBSD.org> | 1998-12-11 00:09:39 +0000 |
commit | 9fcdcd63a50ae726ab8f4a2a08de5d26c4447913 (patch) | |
tree | 7ae7e9a328359e997b6e7329b2bfc3366ae5411e /etc | |
parent | 005aaf0be2a507e0a02172bab090b6b2622105b8 (diff) | |
download | FreeBSD-src-9fcdcd63a50ae726ab8f4a2a08de5d26c4447913.zip FreeBSD-src-9fcdcd63a50ae726ab8f4a2a08de5d26c4447913.tar.gz |
Change to the current directory before doing the install. I !love make.
Diffstat (limited to 'etc')
-rw-r--r-- | etc/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/etc/Makefile b/etc/Makefile index e57bb1c..e43a097 100644 --- a/etc/Makefile +++ b/etc/Makefile @@ -1,5 +1,5 @@ # from: @(#)Makefile 5.11 (Berkeley) 5/21/91 -# $Id: Makefile,v 1.180 1998/11/20 23:20:00 jdp Exp $ +# $Id: Makefile,v 1.181 1998/12/10 05:34:11 jb Exp $ SUBDIR= sendmail @@ -167,6 +167,7 @@ _etc_missing+=$(_f) # install: .if (${_etc_missing} != "") + cd ${.CURDIR}; \ ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 644 ${_etc_missing} \ ${DESTDIR}/etc .endif |