1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-25 04:43:33 +00:00

Running Ant in ${WRKSRC} instead of ${WRKDIR}. This does not

change the working of the Makefile since NO_WRKSUBDIR is defined.
This commit is contained in:
Ernst de Haan 2002-06-13 14:12:46 +00:00
parent bb85f12a35
commit 9e0fec0a9c
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=61216

View File

@ -24,7 +24,7 @@ TARGET_DIR?= ${PREFIX}/share/java/${PORTNAME}-${PORTVERSION}
ANT?= ${LOCALBASE}/bin/ant
do-build:
@cd ${WRKDIR} && ${ANT}
@cd ${WRKSRC} && ${ANT}
do-install:
@${ECHO} -n ">> Creating directory ${TARGET_DIR}..."