diff options
author | jdp <jdp@FreeBSD.org> | 1998-03-24 04:20:27 +0000 |
---|---|---|
committer | jdp <jdp@FreeBSD.org> | 1998-03-24 04:20:27 +0000 |
commit | 5459c29d11f9eb67a62077405956f792e22b4d6e (patch) | |
tree | 7c86daf61db885cb41f17ea05e075377d1c0751c /net/cvsup/scripts | |
parent | 92b007b9200bd90a712ed3c517e430c847654fc5 (diff) | |
download | FreeBSD-ports-5459c29d11f9eb67a62077405956f792e22b4d6e.zip FreeBSD-ports-5459c29d11f9eb67a62077405956f792e22b4d6e.tar.gz |
Update port for CVSup release 15.3 (from 15.2).
Approved by: asami
Diffstat (limited to 'net/cvsup/scripts')
-rw-r--r-- | net/cvsup/scripts/configure | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/net/cvsup/scripts/configure b/net/cvsup/scripts/configure index e5f60ac..feb96dd 100644 --- a/net/cvsup/scripts/configure +++ b/net/cvsup/scripts/configure @@ -1,10 +1,11 @@ #! /bin/sh # -# $Id$ +# $Id: configure,v 1.1 1996/12/14 20:13:27 jdp Exp $ cd ${WRKSRC} files_to_patch="\ + Makefile \ client/src/cvsup.1 \ server/src/cvsupd.8 \ suplib/src/SupMisc.i3 \ @@ -12,6 +13,6 @@ files_to_patch="\ for i in ${files_to_patch}; do rm -f ${i}.new - sed -e "s|/usr/local/|${PREFIX}/|g" ${i} >${i}.new || exit 1 + sed -e "s|/usr/local|${PREFIX}|g" ${i} >${i}.new || exit 1 mv -f ${i}.new ${i} || exit 1 done |