java-library.bbclass: Remove superfluous quotes from BPN variable.
authorRobert Schuster <thebohemian@openembedded.org>
Thu, 16 Oct 2008 09:59:20 +0000 (11:59 +0200)
committerRobert Schuster <thebohemian@openembedded.org>
Wed, 22 Oct 2008 12:52:05 +0000 (14:52 +0200)
classes/java-library.bbclass

index eced939..1e5534c 100644 (file)
@@ -49,7 +49,7 @@ FILES_${JPN} = "${datadir_java}"
 
 # Base package name
 # Automatically derives "foo" from "foo-native"
-BPN ?= ""${@java_base_package_name(d)}""
+BPN ?= "${@java_base_package_name(d)}"
 
 BP ?= "${BPN}-${PV}"