diff options
author | David W. Chapman Jr. <dwcjr@FreeBSD.org> | 2001-12-16 17:33:04 +0000 |
---|---|---|
committer | David W. Chapman Jr. <dwcjr@FreeBSD.org> | 2001-12-16 17:33:04 +0000 |
commit | 6ec7c240aedb8c1a9b4a99a2d351f261e9b52048 (patch) | |
tree | cea3101f4028fa0f26ac57546da0c9ca6b3a69d4 /net-mgmt/nagios-plugins/scripts/configure | |
parent | upgrade to 4.5.0 (diff) |
Update netsaint to 0.0.7b8
backs out revision 1.3 of net/netsaint-plugins/scripts/configure which broke
the port.
Submitted by: maintainer
Notes
Notes:
svn path=/head/; revision=51630
Diffstat (limited to 'net-mgmt/nagios-plugins/scripts/configure')
-rw-r--r-- | net-mgmt/nagios-plugins/scripts/configure | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/net-mgmt/nagios-plugins/scripts/configure b/net-mgmt/nagios-plugins/scripts/configure index 1a71b7ed8ec9..1a17d8fb4392 100644 --- a/net-mgmt/nagios-plugins/scripts/configure +++ b/net-mgmt/nagios-plugins/scripts/configure @@ -1,7 +1,7 @@ #!/bin/sh # $FreeBSD$ -if [ -f ${WRKDIRPREFIX}${.CURDIR}/Makefile.inc ]; then +if [ -f ${WRKDIRPREFIX}${CURDIR}/Makefile.inc ]; then exit fi @@ -39,7 +39,7 @@ OpenLDAP "OpenLDAP support" OFF \ esac fi -exec > ${WRKDIRPREFIX}${.CURDIR}/Makefile.inc +exec > ${WRKDIRPREFIX}${CURDIR}/Makefile.inc SUB_QSTAT="@comment " SUB_FPING="@comment " @@ -91,7 +91,7 @@ while [ "$1" ]; do ;; *) echo "Invalid option(s): $*" > /dev/stderr - rm -f ${WRKDIRPREFIX}${.CURDIR}/Makefile.inc + rm -f ${WRKDIRPREFIX}${CURDIR}/Makefile.inc exit 1 ;; esac |