diff options
author | Pete Fritchman <petef@FreeBSD.org> | 2001-12-07 15:43:46 +0000 |
---|---|---|
committer | Pete Fritchman <petef@FreeBSD.org> | 2001-12-07 15:43:46 +0000 |
commit | 61a3a66271d2337b6ebd61e5ffa5c0cdc056e2d9 (patch) | |
tree | 44134e3916088c91322be1d591de15991d311039 /games/kdegames3 | |
parent | Update port to 4.60 (diff) |
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
Notes
Notes:
svn path=/head/; revision=51183
Diffstat (limited to 'games/kdegames3')
-rw-r--r-- | games/kdegames3/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/games/kdegames3/Makefile b/games/kdegames3/Makefile index e58fb841d4a1..5f8ad16d9804 100644 --- a/games/kdegames3/Makefile +++ b/games/kdegames3/Makefile @@ -38,7 +38,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> |