aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/cups
diff options
context:
space:
mode:
authorKoen Kooi <koen@openembedded.org>2009-11-11 08:42:35 +0100
committerKoen Kooi <koen@openembedded.org>2009-11-11 08:42:35 +0100
commit7e35ee58bba13381869e2e67d107b7d0c0e9d584 (patch)
tree9998ec4f298af373079456627a5cf2a7e06f7fcb /recipes/cups
parentbb9bf844e5060713652bf3990b06d4563a961b5d (diff)
downloadopenembedded-7e35ee58bba13381869e2e67d107b7d0c0e9d584.tar.gz
cups: fix do_package, do_stage is still broken
Diffstat (limited to 'recipes/cups')
-rw-r--r--recipes/cups/cups.inc4
1 files changed, 2 insertions, 2 deletions
diff --git a/recipes/cups/cups.inc b/recipes/cups/cups.inc
index 006e6a3250..642595d48f 100644
--- a/recipes/cups/cups.inc
+++ b/recipes/cups/cups.inc
@@ -61,8 +61,8 @@ do_stage () {
python do_package_append() {
# Change permissions back the way they were, they probably had a reason...
- workdir = bb.data.getVar('WORKDIR', d, 1)
- os.system('chmod 0511 %s/install/cups/var/run/cups/certs' % workdir)
+ pkgdest = bb.data.getVar('PKGDEST', d, 1)
+ os.system('chmod 0511 %s/cups/var/run/cups/certs' % pkgdest)
}
do_stage_append() {