diff options
author | Robert P. J. Day <rpjday@crashcourse.ca> | 2015-02-21 16:28:42 -0500 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-02-24 17:41:44 +0000 |
commit | d861cc4b0493954355b32035c084bfed47d455ac (patch) | |
tree | 57b1d5c621e49b2ba2188152702e1559f02a2c89 /meta/recipes-graphics | |
parent | f7c45a4f747131c0c36bf3e278247746dacc6592 (diff) | |
download | poky-d861cc4b0493954355b32035c084bfed47d455ac.tar.gz |
recipes: Delete superfluous assignments, S = ${WORKDIR}/${BP}
Given that bitbake.conf sets the default values:
BP = "${BPN}-${PV}"
S = "${WORKDIR}/${BP}"
there are a number of recipes that set the variable S completely
superfluously, so get rid of them.
(From OE-Core rev: ebe8578df3f162045086cd60a129eb7ac3eacf4c)
Signed-off-by: Robert P. J. Day <rpjday@crashcourse.ca>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-graphics')
-rw-r--r-- | meta/recipes-graphics/xorg-app/xorg-app-common.inc | 2 | ||||
-rw-r--r-- | meta/recipes-graphics/xorg-driver/xorg-driver-common.inc | 2 |
2 files changed, 0 insertions, 4 deletions
diff --git a/meta/recipes-graphics/xorg-app/xorg-app-common.inc b/meta/recipes-graphics/xorg-app/xorg-app-common.inc index 59a04fa494..3529cb26ef 100644 --- a/meta/recipes-graphics/xorg-app/xorg-app-common.inc +++ b/meta/recipes-graphics/xorg-app/xorg-app-common.inc | |||
@@ -12,8 +12,6 @@ INC_PR = "r8" | |||
12 | 12 | ||
13 | SRC_URI = "${XORG_MIRROR}/individual/app/${BPN}-${PV}.tar.bz2" | 13 | SRC_URI = "${XORG_MIRROR}/individual/app/${BPN}-${PV}.tar.bz2" |
14 | 14 | ||
15 | S = "${WORKDIR}/${BPN}-${PV}" | ||
16 | |||
17 | inherit autotools pkgconfig distro_features_check | 15 | inherit autotools pkgconfig distro_features_check |
18 | 16 | ||
19 | FILES_${PN} += " ${libdir}/X11/${BPN} ${datadir}/X11/app-defaults/" | 17 | FILES_${PN} += " ${libdir}/X11/${BPN} ${datadir}/X11/app-defaults/" |
diff --git a/meta/recipes-graphics/xorg-driver/xorg-driver-common.inc b/meta/recipes-graphics/xorg-driver/xorg-driver-common.inc index 7a710dc532..7ddd1c7da5 100644 --- a/meta/recipes-graphics/xorg-driver/xorg-driver-common.inc +++ b/meta/recipes-graphics/xorg-driver/xorg-driver-common.inc | |||
@@ -11,8 +11,6 @@ DEPENDS = "virtual/xserver xproto randrproto util-macros" | |||
11 | 11 | ||
12 | SRC_URI = "${XORG_MIRROR}/individual/driver/${BPN}-${PV}.tar.bz2" | 12 | SRC_URI = "${XORG_MIRROR}/individual/driver/${BPN}-${PV}.tar.bz2" |
13 | 13 | ||
14 | S = "${WORKDIR}/${BPN}-${PV}" | ||
15 | |||
16 | FILES_${PN} += " ${libdir}/xorg/modules/drivers/*.so" | 14 | FILES_${PN} += " ${libdir}/xorg/modules/drivers/*.so" |
17 | FILES_${PN}-dbg += " ${libdir}/xorg/modules/drivers/.debug" | 15 | FILES_${PN}-dbg += " ${libdir}/xorg/modules/drivers/.debug" |
18 | 16 | ||