diff options
author | Chris Larson <chris_larson@mentor.com> | 2010-06-04 16:20:01 -0700 |
---|---|---|
committer | Chris Larson <chris_larson@mentor.com> | 2010-06-10 14:41:26 -0700 |
commit | 12f5ca2d617893303ce06ee4419637bef49684fe (patch) | |
tree | 637a0300a0458c2fdb1d2d53d89f2e4b2623d14e /classes/openmoko2.bbclass | |
parent | f0c0823e891c517562cb542ef6e64bb0ec9f7faf (diff) |
Drop some unnecessary immediate assignments
Signed-off-by: Chris Larson <chris_larson@mentor.com>
Diffstat (limited to 'classes/openmoko2.bbclass')
-rw-r--r-- | classes/openmoko2.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/classes/openmoko2.bbclass b/classes/openmoko2.bbclass index 233c721ff7..1dfef64963 100644 --- a/classes/openmoko2.bbclass +++ b/classes/openmoko2.bbclass @@ -22,7 +22,7 @@ def openmoko_two_get_subdir(d): LICENSE = "${@openmoko_two_get_license(d)}" SUBDIR = "${@openmoko_two_get_subdir(d)}" -SRC_URI := "${OPENMOKO_MIRROR}/src/target/${OPENMOKO_RELEASE}/${SUBDIR};module=${PN};proto=http" +SRC_URI = "${OPENMOKO_MIRROR}/src/target/${OPENMOKO_RELEASE}/${SUBDIR};module=${PN};proto=http" S = "${WORKDIR}/${PN}" FILES_${PN} += "${datadir}/icons" |