diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 1998-10-30 18:39:53 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 1998-10-30 18:39:53 +0000 |
commit | 81602ce39463a6a994021e186f3b99b0fdb268d2 (patch) | |
tree | 25bccec5b40566d04aefbe0d6cf179882e063078 /Makefile | |
parent | d81ac9482f5dc7bc7184707bed1e5f8e292e0447 (diff) |
set DESTDIR to be empty, not '/' when doing 'make distrib-dirs' so we don't get /etc/foo, not //etc/foo
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.41 1998/09/30 13:27:28 art Exp $ +# $OpenBSD: Makefile,v 1.42 1998/10/30 18:39:52 millert Exp $ # # For more information on building in tricky environments, please see @@ -61,7 +61,7 @@ includes: beforeinstall: .ifndef DESTDIR - (cd ${.CURDIR}/etc && ${MAKE} DESTDIR=/ distrib-dirs) + (cd ${.CURDIR}/etc && ${MAKE} DESTDIR= distrib-dirs) .else (cd ${.CURDIR}/etc && ${MAKE} distrib-dirs) .endif |