From 8b6d807ef1e79c45c6a9d373bbd03f3a12cdb775 Mon Sep 17 00:00:00 2001 From: fvdl Date: Sun, 6 Aug 2000 13:22:16 +0000 Subject: [PATCH] We don't have seperate secr source sets anymore, so don't try to create them. --- distrib/sets/makesrctars | 19 ++----------------- 1 file changed, 2 insertions(+), 17 deletions(-) diff --git a/distrib/sets/makesrctars b/distrib/sets/makesrctars index 7195e12c82b8..b2be1cf4dacc 100755 --- a/distrib/sets/makesrctars +++ b/distrib/sets/makesrctars @@ -1,6 +1,6 @@ #! /bin/sh # -# $NetBSD: makesrctars,v 1.10 1998/11/07 16:59:13 he Exp $ +# $NetBSD: makesrctars,v 1.11 2000/08/06 13:22:16 fvdl Exp $ # # Make source code tarballs. @@ -29,7 +29,7 @@ mkdir ${DESTDIR} mkdir ${DESTDIR}/sets find . \ - \! \( \( -path ./gnu -o -path ./share -o -path ./domestic \) -prune \) \ + \! \( \( -path ./gnu -o -path ./share \) -prune \) \ \! \( -path ./sys -prune \) \ \! \( -path ./usr.sbin/config -prune \) \ \! \( -path ./usr.sbin/dbsym -prune \) \ @@ -67,18 +67,3 @@ find share \ cksum -o2 *.tgz > SYSVSUM md5 *.tgz > MD5) chmod 444 ${DESTDIR}/sets/* - -mkdir ${DESTDIR}/security - -find domestic \ - \! \( \( -type l -o -type d \) \( -name obj -o -name 'obj.*' \) \) \ - -print | \ - sort | pax -w -d -s'|^|usr/src/|' | gzip \ - > ${DESTDIR}/security/secrsrc.tgz - -(cd ${DESTDIR}/security - cksum -o1 *.tgz > BSDSUM - cksum *.tgz > CKSUM - cksum -o2 *.tgz > SYSVSUM - md5 *.tgz > MD5) -chmod 444 ${DESTDIR}/security/*