From c804805778dab47d4833a9ce1e2535888061c2f4 Mon Sep 17 00:00:00 2001 From: Pete Fritchman Date: Sat, 8 Dec 2001 14:10:04 +0000 Subject: 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 Approved by: will --- editors/koffice-kde4/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'editors/koffice-kde4/Makefile') diff --git a/editors/koffice-kde4/Makefile b/editors/koffice-kde4/Makefile index cc3b3fbaf9b4..ffef8e1b128e 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" -- cgit v1.2.3