diff options
author | nslu2-linux.adm@bkbits.net <nslu2-linux.adm@bkbits.net> | 2005-01-20 11:40:16 +0000 |
---|---|---|
committer | nslu2-linux.adm@bkbits.net <nslu2-linux.adm@bkbits.net> | 2005-01-20 11:40:16 +0000 |
commit | 6c8028fb2898e1154fd588c1f03784c74c23feb3 (patch) | |
tree | 2d69b9967a0f332ff0447fd28a12843b9e4aed69 /conf | |
parent | 1bb521fd96e47c6437bda16cf922d897a171fc14 (diff) |
Merge bk://oe-devel.bkbits.net/openembedded
into bkbits.net:/repos/n/nslu2-linux/openembedded
2005/01/20 12:14:36+01:00 mn-solutions.de!schurig
allow 'inherit patcher'
BKrev: 41ef98a0btxbim4o5f-dYY_QgbkR2Q
Diffstat (limited to 'conf')
-rw-r--r-- | conf/bitbake.conf | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/conf/bitbake.conf b/conf/bitbake.conf index b15d744a96..8bd4719032 100644 --- a/conf/bitbake.conf +++ b/conf/bitbake.conf @@ -304,9 +304,8 @@ SRC_URI = "file://${FILE}" MKTEMPDIRCMD = "mktemp -d -q ${TMPBASE}" MKTEMPCMD = "mktemp -q ${TMPBASE}" -# PATCHCLEANCMD = "patcher -B" -# PATCHCMD = "patcher -R -p '%s' -n '%s' -i '%s'" -# PATCH_DEPENDS = "patcher-native" +# Program to be used to patch sources, use 'inherit patcher' to overwrite this: + PATCHCLEANCMD = 'if [ -n "`quilt applied`" ]; then quilt pop -a -R -f || exit 1; fi' PATCHCMD = "quilt upgrade; chmod 644 patches/* || true; quilt import -f -p '%s' -n '%s' '%s'; quilt push" PATCH_DEPENDS = "quilt-native" |