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 /games | |
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 'games')
-rw-r--r-- | games/cave9/Makefile | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/games/cave9/Makefile b/games/cave9/Makefile index 276f921dc19b..b9a69b4b54f7 100644 --- a/games/cave9/Makefile +++ b/games/cave9/Makefile @@ -22,7 +22,6 @@ DATAVER= 4 USE_GMAKE= yes USE_SDL= sdl ttf image -WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} BUILD_WRKSRC= ${WRKSRC}/src MAKEFILE= GNUmakefile @@ -31,7 +30,7 @@ CFLAGS+= -DDATADIR=\\\"${DATADIR}\\\" PORTDOCS= * post-extract: - @${MV} ${WRKDIR}/data ${WRKSRC}/ + @${MV} ${WRKDIR}/data ${WRKSRC} do-install: ${INSTALL_PROGRAM} ${WRKSRC}/cave9 ${PREFIX}/bin |