summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorTodd C. Miller <millert@cvs.openbsd.org>1998-10-30 18:39:53 +0000
committerTodd C. Miller <millert@cvs.openbsd.org>1998-10-30 18:39:53 +0000
commit81602ce39463a6a994021e186f3b99b0fdb268d2 (patch)
tree25bccec5b40566d04aefbe0d6cf179882e063078 /Makefile
parentd81ac9482f5dc7bc7184707bed1e5f8e292e0447 (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--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index c2a9382e281..5392d057b69 100644
--- a/Makefile
+++ b/Makefile
@@ -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