diff options
author | Chris Larson <chris_larson@mentor.com> | 2010-05-19 09:37:07 -0700 |
---|---|---|
committer | Chris Larson <chris_larson@mentor.com> | 2010-05-19 12:53:49 -0700 |
commit | dc079bbb46546c20ecd9e35eb8e849c39cd068af (patch) | |
tree | 59f88b3528e6a72f885e4e17b1bd19117360231e /recipes | |
parent | ce97559acda46d68622f3a9218f3a15640a6082e (diff) |
Fix a couple shell syntax errors in recipes
Signed-off-by: Chris Larson <chris_larson@mentor.com>
Diffstat (limited to 'recipes')
-rw-r--r-- | recipes/servlet-api/jsp2.0_5.5.26.bb | 2 | ||||
-rw-r--r-- | recipes/xapian/xapian-quickstart.inc | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/recipes/servlet-api/jsp2.0_5.5.26.bb b/recipes/servlet-api/jsp2.0_5.5.26.bb index 9c3a9c7257..562a5ca00e 100644 --- a/recipes/servlet-api/jsp2.0_5.5.26.bb +++ b/recipes/servlet-api/jsp2.0_5.5.26.bb @@ -26,7 +26,7 @@ addtask unpackpost after do_unpack before do_patch do_compile() { mkdir -p build - oe_makeclasspath cp -s servlet-api-2.4` + oe_makeclasspath cp -s servlet-api-2.4 javac -sourcepath src/share -d build -cp $cp `find src/share/javax -name \*.java` # Copy extraneous files according to build.xml's compile task diff --git a/recipes/xapian/xapian-quickstart.inc b/recipes/xapian/xapian-quickstart.inc index aab599f64b..920a48bfcd 100644 --- a/recipes/xapian/xapian-quickstart.inc +++ b/recipes/xapian/xapian-quickstart.inc @@ -14,7 +14,7 @@ do_compile() { } do_install() { - install -d ${D}$ + install -d ${D} install -d ${D}${bindir} install -m 0755 ${WORKDIR}/${BINARY_NAME} ${D}${bindir}/ } |