diff options
author | dougb <dougb@FreeBSD.org> | 2012-08-15 08:37:55 +0800 |
---|---|---|
committer | dougb <dougb@FreeBSD.org> | 2012-08-15 08:37:55 +0800 |
commit | e3d56a1ae1f56b333fa6eb49e35b7e18ddff0d19 (patch) | |
tree | 030b0548e51d7c26b469453792dde54640ad6ebc /dns/inadyn | |
parent | 89c843d5f3b52e52f5dd575a2eaeac3c1ff4a118 (diff) | |
download | freebsd-ports-gnome-e3d56a1ae1f56b333fa6eb49e35b7e18ddff0d19.tar.gz freebsd-ports-gnome-e3d56a1ae1f56b333fa6eb49e35b7e18ddff0d19.tar.zst freebsd-ports-gnome-e3d56a1ae1f56b333fa6eb49e35b7e18ddff0d19.zip |
danfe was kind enough to remind me that:
WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION}
is already the default, so for those ports where we are doing:
@${MV} ${WRKDIR}/${PORTNAME} ${WRKSRC}
to avoid the problem of conflicts with the rc.d script of the same
name it is not necessary to define WRKSRC separately.
Clean up this mistake of mine, and standardize for the others.
Diffstat (limited to 'dns/inadyn')
-rw-r--r-- | dns/inadyn/Makefile | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/dns/inadyn/Makefile b/dns/inadyn/Makefile index b13c2314e0ad..f9462fe55051 100644 --- a/dns/inadyn/Makefile +++ b/dns/inadyn/Makefile @@ -17,7 +17,6 @@ DISTNAME= ${PORTNAME}.v${PORTVERSION} MAINTAINER= samm@os2.kiev.ua COMMENT= INADYN - Simple DYNAMIC DNS client -WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} USE_RC_SUBR= inadyn USE_ZIP= yes USE_DOS2UNIX= yes @@ -33,7 +32,7 @@ PORTDOCS= readme.html PLIST_FILES= bin/inadyn post-extract: - @${MV} ${WRKDIR}/${PORTNAME} ${WRKDIR}/${PORTNAME}-${PORTVERSION} + @${MV} ${WRKDIR}/${PORTNAME} ${WRKSRC} post-patch: @${REINPLACE_CMD} -e 's|gcc|$$\(CC\)|g' ${WRKSRC}/makefile |