diff options
author | petef <petef@FreeBSD.org> | 2001-12-07 15:43:46 +0000 |
---|---|---|
committer | petef <petef@FreeBSD.org> | 2001-12-07 15:43:46 +0000 |
commit | d75d003553129c7fd9bba07f50e70566f86565a8 (patch) | |
tree | f99e7681282bd12c0571708c0b003331e535f1d1 /x11-themes/kdeartwork4 | |
parent | eb027758c13ba5ff81f0ce847f84d0e003869754 (diff) | |
download | FreeBSD-ports-d75d003553129c7fd9bba07f50e70566f86565a8.zip FreeBSD-ports-d75d003553129c7fd9bba07f50e70566f86565a8.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 'x11-themes/kdeartwork4')
-rw-r--r-- | x11-themes/kdeartwork4/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/x11-themes/kdeartwork4/Makefile b/x11-themes/kdeartwork4/Makefile index 3456f01..d448650 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> |