diff options
Diffstat (limited to 'net-mgmt/netsaint-plugins/scripts/configure')
-rw-r--r-- | net-mgmt/netsaint-plugins/scripts/configure | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/net-mgmt/netsaint-plugins/scripts/configure b/net-mgmt/netsaint-plugins/scripts/configure index 1a71b7ed8ec9..1a17d8fb4392 100644 --- a/net-mgmt/netsaint-plugins/scripts/configure +++ b/net-mgmt/netsaint-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 |