summaryrefslogtreecommitdiff
path: root/sysutils/etcupdate
diff options
context:
space:
mode:
authormartti <martti@pkgsrc.org>2001-11-20 15:55:44 +0000
committermartti <martti@pkgsrc.org>2001-11-20 15:55:44 +0000
commit3c6d76f5e0df1e105af01fcc5a1e98968e189cc8 (patch)
treeb9191cbdded2444de32a3a48c9af15299ab1e8cf /sysutils/etcupdate
parentf165a167c194fe93c2f7e33044413a9699378f32 (diff)
downloadpkgsrc-3c6d76f5e0df1e105af01fcc5a1e98968e189cc8.tar.gz
Set MTREE=mtree when running "make distribution" as this is needed
in -current. Noted by Alistair Crooks in a private mail.
Diffstat (limited to 'sysutils/etcupdate')
-rwxr-xr-xsysutils/etcupdate/files/etcupdate8
1 files changed, 5 insertions, 3 deletions
diff --git a/sysutils/etcupdate/files/etcupdate b/sysutils/etcupdate/files/etcupdate
index 5e7b42c14e9..baaf864f564 100755
--- a/sysutils/etcupdate/files/etcupdate
+++ b/sysutils/etcupdate/files/etcupdate
@@ -1,6 +1,6 @@
#!/bin/sh
#
-# $NetBSD: etcupdate,v 1.2 2001/11/20 13:20:23 martti Exp $
+# $NetBSD: etcupdate,v 1.3 2001/11/20 15:55:44 martti Exp $
#
# Copyright (c) 2001 The NetBSD Foundation, Inc.
# All rights reserved.
@@ -319,10 +319,12 @@ if [ -z "${CONTINUE}" ]; then
echo "*** Populating ${TEMPROOT} from ${SRCDIR}"
cd ${SRCDIR}/etc
if [ -z "${VERBOSE}" ]; then
- make DESTDIR="${TEMPROOT}" INSTALL_DONE=1 NO_SENDMAIL=1 \
+ make DESTDIR="${TEMPROOT}" MTREE="mtree" \
+ INSTALL_DONE=1 NO_SENDMAIL=1 \
distribution > /dev/null
else
- make DESTDIR="${TEMPROOT}" INSTALL_DONE=1 NO_SENDMAIL=1 \
+ make DESTDIR="${TEMPROOT}" MTREE="mtree" \
+ INSTALL_DONE=1 NO_SENDMAIL=1 \
distribution
fi