diff options
author | Dima Dorfman <dd@FreeBSD.org> | 2002-11-10 17:12:28 +0000 |
---|---|---|
committer | Dima Dorfman <dd@FreeBSD.org> | 2002-11-10 17:12:28 +0000 |
commit | bb613ac89d3c739d6640c539cf952df8b3bf8e55 (patch) | |
tree | 3c06b01af6c4431eddd9893633d524fcab8d0803 /net/psi/files/patch-configure | |
parent | Fix build on 5.0-CURRENT. (diff) |
Upgrade to 0.8.7.
PR: 44874
Submitted by: Jonathan Chen <jonc@chen.org.nz>
Notes
Notes:
svn path=/head/; revision=69811
Diffstat (limited to 'net/psi/files/patch-configure')
-rw-r--r-- | net/psi/files/patch-configure | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/net/psi/files/patch-configure b/net/psi/files/patch-configure new file mode 100644 index 000000000000..1b6a2947fd7f --- /dev/null +++ b/net/psi/files/patch-configure @@ -0,0 +1,16 @@ +$FreeBSD$ + +Fix the getopt to use BSD's getopt instead of Linux's + +--- configure.orig Wed Oct 30 23:09:35 2002 ++++ configure Mon Nov 4 22:10:49 2002 +@@ -2,8 +2,7 @@ + + # parsing options + +-TEMP=`getopt -o p:b:l:q:h --long prefix:,bindir:,libdir:,qtdir:,help \ +--n 'configure' -- "$@"` ++TEMP=`getopt p:b:l:q:h $*` + + if [ $? != 0 ] ; then echo "Terminating..." >&2 ; exit 1 ; fi + |