From 15ecd934e409462bb0cc1a79844ce83a9661431e Mon Sep 17 00:00:00 2001 From: alane Date: Wed, 27 Nov 2002 15:01:40 +0000 Subject: Fix autoconf usage. Port is still broken, though. It's missing linking in whatever has all the mpz_ functions (libgmp?). But that's not autoconf's fault. Approved by: kris --- lang/mozart/Makefile | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/lang/mozart/Makefile b/lang/mozart/Makefile index 685a21f3b295..d8d54a8b403b 100644 --- a/lang/mozart/Makefile +++ b/lang/mozart/Makefile @@ -30,6 +30,7 @@ USE_BISON= yes USE_GMAKE= yes HAS_CONFIGURE= yes USE_XLIB= yes +USE_AUTOCONF_VER= 213 # magic wand: set INSTALL to some absurd value, or else # mozart's configure will not find the right install # when configuring as root. @@ -52,9 +53,12 @@ pre-extract: @${ECHO} post-patch: - cd ${WRKSRC}/contrib/gtk && autoconf213 -l ${WRKSRC} - cd ${WRKSRC}/platform/emulator && autoconf213 -l ${WRKSRC} - cd ${WRKSRC}/platform/tools/gump/ozflex && autoconf213 -l ${WRKSRC} + cd ${WRKSRC}/contrib/gtk \ + && ${AUTOCONF} ${AUTOCONF_ARGS} -l ${WRKSRC} + cd ${WRKSRC}/platform/emulator \ + && ${AUTOCONF} ${AUTOCONF_ARGS} -l ${WRKSRC} + cd ${WRKSRC}/platform/tools/gump/ozflex \ + && ${AUTOCONF} ${AUTOCONF_ARGS} -l ${WRKSRC} post-install: .if !defined(NOPORTDOCS) -- cgit