diff options
author | John Marino <marino@FreeBSD.org> | 2014-09-09 22:19:46 +0000 |
---|---|---|
committer | John Marino <marino@FreeBSD.org> | 2014-09-09 22:19:46 +0000 |
commit | 27bb9553528e4e5c7565e3427708fcb5dcd6acb6 (patch) | |
tree | bc0c8ec36cc1ddcd6d88eb996c83de6d81633d06 /net/cvsup/scripts/configure | |
parent | Upgrade from 2.8.11 to 2.8.14. (diff) |
Remove unstaged lang/ezm3 and three cvsup* ports as casualties
Notes
Notes:
svn path=/head/; revision=367787
Diffstat (limited to 'net/cvsup/scripts/configure')
-rw-r--r-- | net/cvsup/scripts/configure | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/net/cvsup/scripts/configure b/net/cvsup/scripts/configure deleted file mode 100644 index 1f234e91e79b..000000000000 --- a/net/cvsup/scripts/configure +++ /dev/null @@ -1,18 +0,0 @@ -#! /bin/sh -# -# $FreeBSD$ - -cd ${WRKSRC} - -files_to_patch="\ - Makefile \ - 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 |