diff options
author | dancer <dancer> | 2006-05-24 09:02:25 +0000 |
---|---|---|
committer | dancer <dancer> | 2006-05-24 09:02:25 +0000 |
commit | 9b44a68736399dd78eb9c04d3aba96f80ca70ac3 (patch) | |
tree | f74a35c27333695311508d6b8f954d13d1a4ce88 /pdebuild | |
parent | b7c56c52272f7fd1d26efd5c8c8773307c8837c4 (diff) | |
download | pbuilder-9b44a68736399dd78eb9c04d3aba96f80ca70ac3.tar pbuilder-9b44a68736399dd78eb9c04d3aba96f80ca70ac3.tar.gz |
initial cowbuilder support in pdebuild
pbuilder supports pdebuild/cowbuilder
login/execute/update/create etc. can also be --login/--execute/--update/--create etc.
to cater for cowbuilder
documentation updates / XML typesetting fixes.
manpage fixes / spellchecking
generally what I did while I was on plane trip from Debconf Mexico to Japan.
Diffstat (limited to 'pdebuild')
-rw-r--r-- | pdebuild | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -37,13 +37,13 @@ export BUILDRESULTUID=$(id -u) export BUILDRESULTGID=$(id -g) if [ "${USE_PDEBUILD_INTERNAL}" = 'yes' ]; then - ${PBUILDERROOTCMD} pbuilder execute "$@" ${EXTRA_CONFIGFILE[@]/#/--configfile } --bindmounts $(readlink -f ..) /usr/lib/pbuilder/pdebuild-internal ${PWD} --debbuildopts "${DEBBUILDOPTS}" --uid "${BUILDRESULTUID}" --gid "${BUILDRESULTGID}" + ${PBUILDERROOTCMD} ${PDEBUILD_PBUILDER} --execute "$@" ${EXTRA_CONFIGFILE[@]/#/--configfile } --bindmounts $(readlink -f ..) -- /usr/lib/pbuilder/pdebuild-internal ${PWD} --debbuildopts "${DEBBUILDOPTS}" --uid "${BUILDRESULTUID}" --gid "${BUILDRESULTGID}" else if ! dpkg-checkbuilddeps -B ; then echo "W: Unmet build-dependency in source" fi echo "dpkg-buildpackage -S -us -uc -r${BUILDSOURCEROOTCMD} $DEBBUILDOPTS" | perl -pe 's/(^|\s)-[bB](\s|$)/$1$2/g' | /bin/bash - ${PBUILDERROOTCMD} pbuilder build "$@" ${EXTRA_CONFIGFILE[@]/#/--configfile } --buildresult "${BUILDRESULT}" --debbuildopts "${DEBBUILDOPTS}" ../"${PKG_SOURCENAME}_${PKG_VERSION}".dsc + ${PBUILDERROOTCMD} ${PDEBUILD_PBUILDER} --build "$@" ${EXTRA_CONFIGFILE[@]/#/--configfile } --buildresult "${BUILDRESULT}" --debbuildopts "${DEBBUILDOPTS}" ../"${PKG_SOURCENAME}_${PKG_VERSION}".dsc fi # do signing with optional key specifier |