[113062] trunk/base/src/port1.0/portconfigure.tcl

raimue at macports.org raimue at macports.org
Thu Nov 7 02:51:53 PST 2013


Revision: 113062
          https://trac.macports.org/changeset/113062
Author:   raimue at macports.org
Date:     2013-11-07 02:51:53 -0800 (Thu, 07 Nov 2013)
Log Message:
-----------
Use autoconf.args instead of autoconf.pre_args

The arguments passed to the autoconf/autoreconf/automake commands are likely
depending on the .cmd used. Therefore, it's unlikely that we need additional
commands, but more likely we need completely different or no arguments (for
instance when running ./autogen.sh).

This change might break some existing ports that clear autoconf.pre_args which
can be fixed by clearing autoconf.args as well. Applying this to a Portfile is
backward-compatible.

https://lists.macosforge.org/pipermail/macports-dev/2013-September/024401.html

Modified Paths:
--------------
    trunk/base/src/port1.0/portconfigure.tcl

Modified: trunk/base/src/port1.0/portconfigure.tcl
===================================================================
--- trunk/base/src/port1.0/portconfigure.tcl	2013-11-07 10:08:37 UTC (rev 113061)
+++ trunk/base/src/port1.0/portconfigure.tcl	2013-11-07 10:51:53 UTC (rev 113062)
@@ -51,11 +51,11 @@
 default configure.nice      {${buildnicevalue}}
 default configure.dir       {${worksrcpath}}
 default autoreconf.dir      {${worksrcpath}}
-default autoreconf.pre_args {{--install --verbose}}
+default autoreconf.args     {{--install --verbose}}
 default autoconf.dir        {${worksrcpath}}
-default autoconf.pre_args   {--verbose}
+default autoconf.args       {--verbose}
 default automake.dir        {${worksrcpath}}
-default automake.pre_args   {--verbose}
+default automake.args       {--verbose}
 default xmkmf.cmd           xmkmf
 default xmkmf.dir           {${worksrcpath}}
 default use_configure       yes
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.macosforge.org/pipermail/macports-changes/attachments/20131107/e99b8634/attachment.html>


More information about the macports-changes mailing list