diff options
author | erwin <erwin@FreeBSD.org> | 2006-10-07 19:40:19 +0800 |
---|---|---|
committer | erwin <erwin@FreeBSD.org> | 2006-10-07 19:40:19 +0800 |
commit | 7331485d3e4bcac78e4fb7a5593d7ed83b916255 (patch) | |
tree | dbef926f67d3a97ca339832f875bcc42d2122917 /lang/pm3-net | |
parent | 856cf98ed17ab6ef0316d89cb520c4bbbb0cc9e7 (diff) | |
download | freebsd-ports-gnome-7331485d3e4bcac78e4fb7a5593d7ed83b916255.tar.gz freebsd-ports-gnome-7331485d3e4bcac78e4fb7a5593d7ed83b916255.tar.zst freebsd-ports-gnome-7331485d3e4bcac78e4fb7a5593d7ed83b916255.zip |
Use INST_TARGET instead of TARGETDIR locally to avoid conflicting
with bsd.ports.mk's TARGETDIR macro.
Submitted by: gabor
Prodded by: kris
Diffstat (limited to 'lang/pm3-net')
-rw-r--r-- | lang/pm3-net/Makefile | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lang/pm3-net/Makefile b/lang/pm3-net/Makefile index e75c7cec2155..810f258eabf1 100644 --- a/lang/pm3-net/Makefile +++ b/lang/pm3-net/Makefile @@ -22,7 +22,7 @@ RUN_DEPENDS= ${L1}libm3${L2}:${PORTSDIR}/lang/pm3-base DIST_SUBDIR= pm3 INSTALL_TARGET= all PLIST_SUB+= SOVERSION=${SOVERSION} TARGET=${TARGET} \ - TARGETDIR=${TARGETDIR} WORDSIZE=${WORDSIZE} + INST_TARGET=${INST_TARGET} WORDSIZE=${WORDSIZE} WRKSRC= ${WRKDIRPREFIX}${.CURDIR}/../pm3-base/work/pm3-${PORTVERSION} BUILDDIRS= network/tcplibs/tcp \ @@ -39,16 +39,16 @@ USE_BZIP2= yes .if ${PORTOBJFORMAT} == "aout" L2= .so.${SOVERSION}.0 TARGET= FreeBSD2 -TARGETDIR= freebsd-2 +INST_TARGET= freebsd-2 WORDSIZE= 32 .elif ${ARCH} == "i386" L2= .so.${SOVERSION} .if ${OSVERSION} < 400011 TARGET= FreeBSD3 -TARGETDIR= freebsd-3 +INST_TARGET= freebsd-3 .else TARGET= FreeBSD4 -TARGETDIR= freebsd-4 +INST_TARGET= freebsd-4 .endif WORDSIZE= 32 .elif ${ARCH} == "alpha" @@ -58,7 +58,7 @@ IGNORE= Not supported on older versions of FreeBSD/Alpha CFLAGS+= -mieee L2= .so.${SOVERSION} TARGET= FBSD_ALPHA -TARGETDIR= fbsd-alpha +INST_TARGET= fbsd-alpha WORDSIZE= 64 .endif |