Pass run-all.sh params to tpkg's configure calls

This commit is contained in:
Willem Toorop 2016-05-09 14:13:37 +02:00
parent 240bb76bd5
commit 4159360ee5
6 changed files with 18 additions and 12 deletions

View File

@ -25,4 +25,4 @@ done
rm -fr "${BUILDDIR}/build" rm -fr "${BUILDDIR}/build"
mkdir "${BUILDDIR}/build" mkdir "${BUILDDIR}/build"
cd "${BUILDDIR}/build" cd "${BUILDDIR}/build"
"${SRCROOT}/configure" --prefix "${BUILDDIR}/install" "${SRCROOT}/configure" $* --prefix "${BUILDDIR}/install"

View File

@ -5,7 +5,7 @@ CreationDate: ma mrt 21 15:59:59 CET 2016
Maintainer: Willem Toorop Maintainer: Willem Toorop
Category: Category:
Component: Component:
CmdDepends: CmdDepends: valgrind
Depends: 110-link.tpkg Depends: 110-link.tpkg
Help: Help:
Pre: Pre:

View File

@ -25,4 +25,4 @@ done
rm -fr "${BUILDDIR}/build-stub-only" rm -fr "${BUILDDIR}/build-stub-only"
mkdir "${BUILDDIR}/build-stub-only" mkdir "${BUILDDIR}/build-stub-only"
cd "${BUILDDIR}/build-stub-only" cd "${BUILDDIR}/build-stub-only"
"${SRCROOT}/configure" --enable-stub-only "${SRCROOT}/configure" $* --enable-stub-only

View File

@ -5,7 +5,7 @@ CreationDate: ma mrt 21 16:24:56 CET 2016
Maintainer: Willem Toorop Maintainer: Willem Toorop
Category: Category:
Component: Component:
CmdDepends: CmdDepends: valgrind
Depends: 110-link.tpkg Depends: 110-link.tpkg
Help: Help:
Pre: Pre:

View File

@ -7,10 +7,10 @@
rm -fr "${BUILDDIR}/build-event-loops" rm -fr "${BUILDDIR}/build-event-loops"
mkdir "${BUILDDIR}/build-event-loops" mkdir "${BUILDDIR}/build-event-loops"
cd "${BUILDDIR}/build-event-loops" cd "${BUILDDIR}/build-event-loops"
"${SRCROOT}/configure" --enable-all-drafts --enable-all-debugging --with-getdns_query --with-libevent --with-libev --with-libuv \ "${SRCROOT}/configure" $* --enable-all-drafts --enable-all-debugging --with-getdns_query --with-libevent --with-libev --with-libuv \
|| "${SRCROOT}/configure" --enable-all-drafts --enable-all-debugging --with-getdns_query --with-libevent --with-libev \ || "${SRCROOT}/configure" $* --enable-all-drafts --enable-all-debugging --with-getdns_query --with-libevent --with-libev \
|| "${SRCROOT}/configure" --enable-all-drafts --enable-all-debugging --with-getdns_query --with-libevent --with-libuv \ || "${SRCROOT}/configure" $* --enable-all-drafts --enable-all-debugging --with-getdns_query --with-libevent --with-libuv \
|| "${SRCROOT}/configure" --enable-all-drafts --enable-all-debugging --with-getdns_query --with-libev --with-libuv \ || "${SRCROOT}/configure" $* --enable-all-drafts --enable-all-debugging --with-getdns_query --with-libev --with-libuv \
|| "${SRCROOT}/configure" --enable-all-drafts --enable-all-debugging --with-getdns_query --with-libevent \ || "${SRCROOT}/configure" $* --enable-all-drafts --enable-all-debugging --with-getdns_query --with-libevent \
|| "${SRCROOT}/configure" --enable-all-drafts --enable-all-debugging --with-getdns_query --with-libev \ || "${SRCROOT}/configure" $* --enable-all-drafts --enable-all-debugging --with-getdns_query --with-libev \
|| "${SRCROOT}/configure" --enable-all-drafts --enable-all-debugging --with-getdns_query --with-libuv || "${SRCROOT}/configure" $* --enable-all-drafts --enable-all-debugging --with-getdns_query --with-libuv

View File

@ -414,7 +414,13 @@ do case "$o" in
v) version; exit 0;; v) version; exit 0;;
l) TPKG_LOG=1;; l) TPKG_LOG=1;;
p) TPKG_PRI="$OPTARG";; p) TPKG_PRI="$OPTARG";;
a) TPKG_ARGS="$OPTARG";; a) if [ -z "$TPKG_ARGS" ]
then
TPKG_ARGS="$OPTARG"
else
TPKG_ARGS="$TPKG_ARGS $OPTARG"
fi
;;
q) TPKG_QUIET=1;; q) TPKG_QUIET=1;;
k) TPKG_KEEP=1;; k) TPKG_KEEP=1;;
n) TPKG_PASS=$OPTARG n) TPKG_PASS=$OPTARG