diff options
author | pat <pat@FreeBSD.org> | 2002-01-27 10:36:57 +0800 |
---|---|---|
committer | pat <pat@FreeBSD.org> | 2002-01-27 10:36:57 +0800 |
commit | 886a07f18eb0b37dfd942ddb58bfcf76daf6dfb3 (patch) | |
tree | 91ec09dd67174c05cf5711368a55ad79070773a8 /audio/rat | |
parent | 429e90a689696175eb57dcd0a9318ce976bc438c (diff) | |
download | freebsd-ports-gnome-886a07f18eb0b37dfd942ddb58bfcf76daf6dfb3.tar.gz freebsd-ports-gnome-886a07f18eb0b37dfd942ddb58bfcf76daf6dfb3.tar.zst freebsd-ports-gnome-886a07f18eb0b37dfd942ddb58bfcf76daf6dfb3.zip |
Fix for autoconf
PR: 34227
Submitted by: Kazuyoshi Komine <komine@cc.meisei-u.ac.jp>
Diffstat (limited to 'audio/rat')
-rw-r--r-- | audio/rat/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/audio/rat/Makefile b/audio/rat/Makefile index cd715a63ddc4..3987d8f45e28 100644 --- a/audio/rat/Makefile +++ b/audio/rat/Makefile @@ -44,7 +44,7 @@ do-build: .endfor do-configure: - cd ${WRKSRC}/common && autoconf && ./configure ${CONFIGURE_ARGS} ${ENABLE_IPv6} - cd ${WRKSRC}/rat && autoconf && ./configure ${CONFIGURE_ARGS} --with-tcl=${LOCALBASE} --with-tk=${LOCALBASE} ${ENABLE_IPv6} + cd ${WRKSRC}/common && ${AUTOCONF} && ./configure ${CONFIGURE_ARGS} ${ENABLE_IPv6} + cd ${WRKSRC}/rat && ${AUTOCONF} && ./configure ${CONFIGURE_ARGS} --with-tcl=${LOCALBASE} --with-tk=${LOCALBASE} ${ENABLE_IPv6} .include "bsd.port.post.mk" |