aboutsummaryrefslogtreecommitdiffstats
path: root/x11-themes
diff options
context:
space:
mode:
authorPete Fritchman <petef@FreeBSD.org>2001-12-07 23:43:46 +0800
committerPete Fritchman <petef@FreeBSD.org>2001-12-07 23:43:46 +0800
commit61a3a66271d2337b6ebd61e5ffa5c0cdc056e2d9 (patch)
tree44134e3916088c91322be1d591de15991d311039 /x11-themes
parent6cc3bf154487889db8ba9e42886f6cb499e05c5d (diff)
downloadfreebsd-ports-gnome-61a3a66271d2337b6ebd61e5ffa5c0cdc056e2d9.tar.gz
freebsd-ports-gnome-61a3a66271d2337b6ebd61e5ffa5c0cdc056e2d9.tar.zst
freebsd-ports-gnome-61a3a66271d2337b6ebd61e5ffa5c0cdc056e2d9.zip
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 'x11-themes')
-rw-r--r--x11-themes/kdeartwork3/Makefile2
-rw-r--r--x11-themes/kdeartwork4/Makefile2
2 files changed, 2 insertions, 2 deletions
diff --git a/x11-themes/kdeartwork3/Makefile b/x11-themes/kdeartwork3/Makefile
index 3456f01c8602..d44865036d05 100644
--- a/x11-themes/kdeartwork3/Makefile
+++ b/x11-themes/kdeartwork3/Makefile
@@ -39,7 +39,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
.include <bsd.port.mk>
diff --git a/x11-themes/kdeartwork4/Makefile b/x11-themes/kdeartwork4/Makefile
index 3456f01c8602..d44865036d05 100644
--- a/x11-themes/kdeartwork4/Makefile
+++ b/x11-themes/kdeartwork4/Makefile
@@ -39,7 +39,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
.include <bsd.port.mk>