diff options
author | Trevor Johnson <trevor@FreeBSD.org> | 2003-09-29 12:26:23 +0000 |
---|---|---|
committer | Trevor Johnson <trevor@FreeBSD.org> | 2003-09-29 12:26:23 +0000 |
commit | 9f5d67839b63329131a463b6880c1fef85e0a005 (patch) | |
tree | fdc03d226a209d2798b8bc7ddbec7c5d3f150a60 /audio/pd | |
parent | cc4f3e3fa820e4a6b1d3b4fb7d352a2da24a989b (diff) | |
download | ports-9f5d67839b63329131a463b6880c1fef85e0a005.tar.gz ports-9f5d67839b63329131a463b6880c1fef85e0a005.zip |
Notes
Diffstat (limited to 'audio/pd')
-rw-r--r-- | audio/pd/Makefile | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/audio/pd/Makefile b/audio/pd/Makefile index c4418fa7f46a..1a4db6b5a30d 100644 --- a/audio/pd/Makefile +++ b/audio/pd/Makefile @@ -35,9 +35,10 @@ pre-configure: ${CHMOD} +x ${WRKSRC}/${CONFIGURE_SCRIPT} post-configure: - ${PERL} -pi -e \ -"s:^INCLUDE = :INCLUDE = -I${LOCALBASE}/include/tk8.3 -I${LOCALBASE}/include/tcl8.3 -I${X11BASE}/include :g; s:^LIB =:LIB =${PTHREAD_LIBS}:g; s:^CFLAGS =:CFLAGS+=${PTHREAD_CFLAGS}:g" \ - ${WRKSRC}/makefile + ${CP} ${WRKSRC}/makefile ${WRKSRC}/makefile.orig + ${SED} -e \ +"s:^INCLUDE = :INCLUDE = -I${LOCALBASE}/include/tk8.3 -I${LOCALBASE}/include/tcl8.3 -I${X11BASE}/include :g; s:^LIB =:LIB =${PTHREAD_LIBS}:g; s:^CFLAGS =:CFLAGS+=${PTHREAD_CFLAGS}:g" < ${WRKSRC}/makefile.orig \ + > ${WRKSRC}/makefile pre-install: ${RM} -f ${PLIST} |