head	1.2;
access;
symbols
	RELEASE_4_9_0:1.1;
locks; strict;
comment	@# @;


1.2
date	2003.10.15.07.20.24;	author daichi;	state dead;
branches;
next	1.1;

1.1
date	2003.08.23.13.43.26;	author edwin;	state Exp;
branches;
next	;


desc
@@


1.2
log
@update security/freebsd-update: 1.3 -> 1.4
  - Much cleaner code (FreeBSD Update is now a shell script, rather than a
    huge ugly makefile),
  - Better performance,
  - Reduced bandwidth usage when no updates are available,
  - Warnings about files which have been affected by security updates, but
    cannot be updated because they have been modified locally,
  - An "intrusion detection" mode which compares every file which can be
    installed as part of a RELEASE against a (signed) database of known good
    hashes.

PR:		58028
Submitted by:	Colin Percival <cperciva@@daemonology.net> (maintainer)
@
text
@--- Makefile.orig	Sat Mar 22 15:44:03 2003
+++ Makefile	Fri Aug 22 15:58:45 2003
@@@@ -14,6 +14,7 @@@@
 		uname -r | cut -f 1 -d '-' ) | lam - -
 WORKDIR?=${.CURDIR}/work
 MAILTO?=root
+BSPATCH!=which bspatch || echo /usr/local/bin/bspatch
 
 daily:
 	@@sleep `jot -r 1 0 3600`
@@@@ -78,7 +79,8 @@@@
 		rmdir ${WORKDIR}/${NUM}/install$$f;			\
 		( fetch -qo ${WORKDIR}/${NUM}/$$z-$$y			\
 			${FETCHROOT}/$$z-$$y &&				\
-			bspatch $$f ${WORKDIR}/${NUM}/install$$f.tmp	\
+			${BSPATCH} $$f					\
+				${WORKDIR}/${NUM}/install$$f.tmp	\
 				${WORKDIR}/${NUM}/$$z-$$y &&		\
 			rm ${WORKDIR}/${NUM}/$$z-$$y ) ||		\
 			touch ${WORKDIR}/${NUM}/install$$f.tmp;		\
@


1.1
log
@[MAINTAINER UPDATE] security/freebsd-update

	Call bspatch with a full path; this fixes problems where
	people are running freebsd-update with a PATH which doesn't
	include /usr/local/bin

PR:		ports/55869
Submitted by:	Colin Percival <cperciva@@daemonology.net>
@
text
@@

