diff options
author | Holger Freyther <zecke@selfish.org> | 2006-08-05 15:50:21 +0000 |
---|---|---|
committer | Holger Freyther <zecke@selfish.org> | 2006-08-05 15:50:21 +0000 |
commit | a1a669ff49805375105ac8a778030123160db9a1 (patch) | |
tree | debe5a759a827e104e7b7e33195a09a4a70af744 | |
parent | c0489eb08641a7a45d09691574f7ad552e320e43 (diff) |
conf/bitbake.conf: quilt 0.45 lacks -n but has -P for setting a patch name
quilt 0.45 lacks the -n option but has -P nowadays for setting
the to be used patchname, update.
-rw-r--r-- | conf/bitbake.conf | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/conf/bitbake.conf b/conf/bitbake.conf index c9192b6720..0a141f883e 100644 --- a/conf/bitbake.conf +++ b/conf/bitbake.conf @@ -341,7 +341,7 @@ MKTEMPCMD = "mktemp -q ${TMPBASE}" # 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 = "pnum='%s'; name='%s'; patch='%s'; mkdir -p patches ; quilt upgrade >/dev/null 2>&1; quilt import -f -p $pnum -n $name $patch; chmod u+w patches/$name; quilt push" +PATCHCMD = "pnum='%s'; name='%s'; patch='%s'; mkdir -p patches ; quilt upgrade >/dev/null 2>&1; quilt import -f -p $pnum -P $name $patch; chmod u+w patches/$name; quilt push" PATCH_DEPENDS = "quilt-native" # GNU patch tries to be intellgent about checking out read-only files from |