Experimental package creation tool for MinGW.org
修訂 | 688d77ef5512ec1ae5cd114f1f50cea142154e1e (tree) |
---|---|
時間 | 2020-08-23 22:41:42 |
作者 | ![]() |
Commiter | Keith Marshall |
Correct a cross-tool options parsing defect.
* src/modules/actions.sh [!xtool-mode]: Initialization of...
(configure_options): ...this requires command substitution to eval...
(xhost_configure_options): ...this expression; use back-quotes.
* v1.0-rc-2: Tag for roll-out.
@@ -127,7 +127,7 @@ | ||
127 | 127 | || phase configure "configure for build" |
128 | 128 | test -r "$PACKAGE_SRCDIR/arch/$ARCH/$PACKAGE-$VERSION-$ARCH.xconfig" && |
129 | 129 | . "$PACKAGE_SRCDIR/arch/$ARCH/$PACKAGE-$VERSION-$ARCH.xconfig" |
130 | - ${xtool_mode-false} || eval configure_options="$xhost_configure_options" | |
130 | + ${xtool_mode-false} || configure_options=`eval $xhost_configure_options` | |
131 | 131 | eval ${PACKAGE_SRCDIR="${SRCDIR-"."}"}/configure $configure_options \ |
132 | 132 | || die "package configuration failed" |
133 | 133 | test "x$active_phase" = "xconfigure" && phase "done." |