diff options
author | leeym <leeym@FreeBSD.org> | 2003-07-21 00:21:15 +0800 |
---|---|---|
committer | leeym <leeym@FreeBSD.org> | 2003-07-21 00:21:15 +0800 |
commit | 10b4344b3e3d5ba085096cc1d60872416fc8c84a (patch) | |
tree | f868ee322b3a47d5ebdd51c7f0ac57a6bf250e88 /net | |
parent | bc6cdae586c695dac185542985398b0128825f5a (diff) | |
download | freebsd-ports-gnome-10b4344b3e3d5ba085096cc1d60872416fc8c84a.tar.gz freebsd-ports-gnome-10b4344b3e3d5ba085096cc1d60872416fc8c84a.tar.zst freebsd-ports-gnome-10b4344b3e3d5ba085096cc1d60872416fc8c84a.zip |
create ${WRKDIRPREFIX}${CURDIR} before generate Makefile.inc
PR: 54642
Submitted by: tjs@cdpa.nsysu.edu.tw
Diffstat (limited to 'net')
-rw-r--r-- | net/gnu-radius/Makefile | 3 | ||||
-rw-r--r-- | net/gnu-radius/scripts/configure | 1 |
2 files changed, 3 insertions, 1 deletions
diff --git a/net/gnu-radius/Makefile b/net/gnu-radius/Makefile index 161dd380a0b2..e43e3ebae2ff 100644 --- a/net/gnu-radius/Makefile +++ b/net/gnu-radius/Makefile @@ -26,7 +26,8 @@ MAN8= builddbm.8 radctl.8 radiusd.8 radping.8 radzap.8 MANCOMPRESSED= no SCRIPTS_ENV= WRKDIRPREFIX="${WRKDIRPREFIX}" \ - CURDIR="${.CURDIR}" + CURDIR="${.CURDIR}" \ + MKDIR="${MKDIR}" STARTUP_FILE= ${PREFIX}/etc/rc.d/gnu-radius.sh diff --git a/net/gnu-radius/scripts/configure b/net/gnu-radius/scripts/configure index b981006c651f..3051a69ae626 100644 --- a/net/gnu-radius/scripts/configure +++ b/net/gnu-radius/scripts/configure @@ -38,6 +38,7 @@ Notify "Enable TTL notification" OFF \ esac fi +${MKDIR} ${WRKDIRPREFIX}${CURDIR} exec > ${WRKDIRPREFIX}${CURDIR}/Makefile.inc INCLUDE_PATH=${LOCALBASE}/include/ |