summaryrefslogtreecommitdiff
path: root/lang
diff options
context:
space:
mode:
authorErwin Lansing <erwin@FreeBSD.org>2006-10-11 20:29:34 +0000
committerErwin Lansing <erwin@FreeBSD.org>2006-10-11 20:29:34 +0000
commita1f17a257735ae97d1c25b2b0fb1638dfc309c53 (patch)
tree27ea6ffdf8db517849bdfa35e68291a5ba30d6ce /lang
parentFix build with Python 2.5 by adding encoding information on (diff)
Use INST_TARGET instead of TARGETDIR locally to avoid conflicting
with bsd.ports.mk's TARGETDIR macro. Submitted by: gabor Prodded by: kris Approved by: portmgr (self)
Notes
Notes: svn path=/head/; revision=175216
Diffstat (limited to 'lang')
-rw-r--r--lang/pm3-netobj/Makefile10
1 files changed, 5 insertions, 5 deletions
diff --git a/lang/pm3-netobj/Makefile b/lang/pm3-netobj/Makefile
index d61ee7d0e995..274641600262 100644
--- a/lang/pm3-netobj/Makefile
+++ b/lang/pm3-netobj/Makefile
@@ -24,7 +24,7 @@ DIST_SUBDIR= pm3
INSTALL_TARGET= all
MAN1= netobjd.1 stubgen.1
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/netobjects/netobj \
@@ -42,16 +42,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"
@@ -61,7 +61,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