View | Details | Raw Unified | Return to bug 184479
Collapse All | Expand All

(-)Makefile (-1 / +1 lines)
Lines 1-7 Link Here
1
# $FreeBSD$
1
# $FreeBSD$
2
2
3
PORTNAME?=	autoconf-wrapper
3
PORTNAME?=	autoconf-wrapper
4
PORTVERSION=	20130530
4
PORTVERSION=	20131203
5
CATEGORIES=	devel
5
CATEGORIES=	devel
6
MASTER_SITES=	# none
6
MASTER_SITES=	# none
7
DISTFILES=	# none
7
DISTFILES=	# none
(-)files/autotools-wrapper.sh (+3 lines)
Lines 31-36 Link Here
31
bindir=%%PREFIX%%/bin
31
bindir=%%PREFIX%%/bin
32
tool=$(basename $0)
32
tool=$(basename $0)
33
33
34
exec 4<&0
35
34
error() {
36
error() {
35
	echo "$@" 1>&2
37
	echo "$@" 1>&2
36
	exit 1
38
	exit 1
Lines 85-89 Link Here
85
	    "(${bindir}/${tool}-${selected_version})" 1>&2
87
	    "(${bindir}/${tool}-${selected_version})" 1>&2
86
fi
88
fi
87
89
90
exec 0<&4 4<&-
88
exec ${bindir}/${tool}-${selected_version} "$@"
91
exec ${bindir}/${tool}-${selected_version} "$@"
89
}
92
}

Return to bug 184479