summaryrefslogtreecommitdiffstats
path: root/editors/koffice-kde4
diff options
context:
space:
mode:
authorpetef <petef@FreeBSD.org>2001-12-08 14:10:04 +0000
committerpetef <petef@FreeBSD.org>2001-12-08 14:10:04 +0000
commit90b97faaea1b9d15561dfebdec18e13252d13eba (patch)
tree128601629dc047bf8e63b7f51da06095838ab67e /editors/koffice-kde4
parent0fe5cf0ed083113f989b4422eef83ba95bb88fd3 (diff)
downloadFreeBSD-ports-90b97faaea1b9d15561dfebdec18e13252d13eba.zip
FreeBSD-ports-90b97faaea1b9d15561dfebdec18e13252d13eba.tar.gz
Fix a problem with auto{conf,make}: some build magic was introduced to
make sure that the "autoconf" and "automake" binaries KDE looked for were found and were autoconf213 and automake14 (as there are issues with the latest versions), but the logic in setting $PATH was wrong. This puts ${WRKSRC}/auto-bin before the rest of the users $PATH. This fixes KDE auto* problems if automake14 and automake-1.5 are both installed. PR: 32512 Submitted by: Alan Eldridge <alane@geeksrus.net> Approved by: will
Diffstat (limited to 'editors/koffice-kde4')
-rw-r--r--editors/koffice-kde4/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/editors/koffice-kde4/Makefile b/editors/koffice-kde4/Makefile
index cc3b3fb..ffef8e1 100644
--- a/editors/koffice-kde4/Makefile
+++ b/editors/koffice-kde4/Makefile
@@ -47,7 +47,7 @@ pre-configure:
.for AM in automake aclocal
${LN} -sf ${LOCALBASE}/bin/${AM}14 ${WRKSRC}/auto-bin/${AM}
.endfor
- cd ${WRKSRC} && env PATH=$$PATH:${WRKSRC}/auto-bin \
+ cd ${WRKSRC} && env PATH=${WRKSRC}/auto-bin:$$PATH \
${GMAKE} -f Makefile.cvs
find ${WRKSRC} -name Makefile.in | xargs ${PERL} -pi -e \
"s@LIBPYTHON =@LIBPYTHON= ${PTHREAD_LIBS}@g"
OpenPOWER on IntegriCloud