diff options
| author | John Polstra <jdp@FreeBSD.org> | 1996-12-14 20:13:27 +0000 |
|---|---|---|
| committer | John Polstra <jdp@FreeBSD.org> | 1996-12-14 20:13:27 +0000 |
| commit | 35c1e6484a0a606420dfb5e86f316d0abaafd753 (patch) | |
| tree | deee48734ab97c4b919bbec32a52412a65d09450 /net/cvsup/scripts/configure | |
| parent | 092ba24f2eefd065a9ef1006288a8820fde0cd37 (diff) | |
Update from version 13.5 to version 14.0.
Diffstat (limited to 'net/cvsup/scripts/configure')
| -rw-r--r-- | net/cvsup/scripts/configure | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/net/cvsup/scripts/configure b/net/cvsup/scripts/configure new file mode 100644 index 000000000000..e5f60ac54e06 --- /dev/null +++ b/net/cvsup/scripts/configure @@ -0,0 +1,17 @@ +#! /bin/sh +# +# $Id$ + +cd ${WRKSRC} + +files_to_patch="\ + client/src/cvsup.1 \ + server/src/cvsupd.8 \ + suplib/src/SupMisc.i3 \ + suplib/src/m3makefile" + +for i in ${files_to_patch}; do + rm -f ${i}.new + sed -e "s|/usr/local/|${PREFIX}/|g" ${i} >${i}.new || exit 1 + mv -f ${i}.new ${i} || exit 1 +done |
