diff options
| -rw-r--r-- | libgcc/libgcc.oe | 2 | ||||
| -rw-r--r-- | libstdc++/libstdc++.oe | 2 | ||||
| -rw-r--r-- | mtd/mtd.oe | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/libgcc/libgcc.oe b/libgcc/libgcc.oe index 6d6953f7c1..1b8dc5cf3e 100644 --- a/libgcc/libgcc.oe +++ b/libgcc/libgcc.oe @@ -3,7 +3,7 @@ SECTION = "libs" PRIORITY = "required" DEPENDS = "virtual/libc" RDEPENDS = "libc6" -PV = "${@os.popen("%s -dumpversion" % oe.data.getVar("CC",d,1)).readline().strip()} +PV = "${@os.popen("%s -dumpversion" % oe.data.getVar("CC",d,1)).readline().strip()}" do_install() { install -d ${D}/${libdir}/ diff --git a/libstdc++/libstdc++.oe b/libstdc++/libstdc++.oe index 8d627a06d2..571ca77a73 100644 --- a/libstdc++/libstdc++.oe +++ b/libstdc++/libstdc++.oe @@ -3,7 +3,7 @@ SECTION = "libs" PRIORITY = "required" DEPENDS = "virtual/libc" RDEPENDS = "libc6" -PV = "${@os.popen("%s -dumpversion" % oe.data.getVar("CC",d,1)).readline().strip()} +PV = "${@os.popen("%s -dumpversion" % oe.data.getVar("CC",d,1)).readline().strip()}" #FIXME: Create links. Problem: How to get the version number of libstdc++.so ? diff --git a/mtd/mtd.oe b/mtd/mtd.oe index 3d501f090e..46526582dd 100644 --- a/mtd/mtd.oe +++ b/mtd/mtd.oe @@ -1,7 +1,7 @@ DEPENDS = "virtual/libc zlib" RDEPENDS = "libc6 zlib1g" DESCRIPTION = "Tools for managing memory technology devices." -PV = "${@os.popen("date +%Y%m%d").readline().strip()} +PV = "${@os.popen("date +%Y%m%d").readline().strip()}" S = "${WORKDIR}/mtd/util" SRC_URI = cvs://anoncvs:anoncvs@cvs.infradead.org/home/cvs;module=mtd |
