diff options
author | Ross Burton <ross.burton@intel.com> | 2012-11-28 17:06:53 +0000 |
---|---|---|
committer | Ross Burton <ross.burton@intel.com> | 2012-12-05 12:51:55 +0000 |
commit | e206443c132ee94227580fad16b16332007aec42 (patch) | |
tree | 0c88095ebcbce104721129284b1aefb54c49f93d | |
parent | 4e6b3eeb7cf2ea002819daa57a1248de2daac0cd (diff) | |
download | openembedded-core-e206443c132ee94227580fad16b16332007aec42.tar.gz openembedded-core-e206443c132ee94227580fad16b16332007aec42.tar.bz2 openembedded-core-e206443c132ee94227580fad16b16332007aec42.zip |
guile: fix bashism in script
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/recipes-devtools/guile/guile_2.0.6.bb | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/meta/recipes-devtools/guile/guile_2.0.6.bb b/meta/recipes-devtools/guile/guile_2.0.6.bb index a9df4f768f..a5205d15c5 100644 --- a/meta/recipes-devtools/guile/guile_2.0.6.bb +++ b/meta/recipes-devtools/guile/guile_2.0.6.bb @@ -28,6 +28,8 @@ SRC_URI = "${GNU_MIRROR}/guile/guile-${PV}.tar.gz \ SRC_URI[md5sum] = "3438cd4415c0c43ca93a20e845eba7e2" SRC_URI[sha256sum] = "3ece055145a5020dd36b84f5fbccd4b3846a671960dd5ee55931555f03200950" +PR = "r1" + inherit autotools gettext BBCLASSEXTEND = "native" @@ -45,7 +47,7 @@ export GUILE_FOR_BUILD="${BUILD_SYS}-guile" do_compile_append() { # just for target recipe - if [ "${PN}" == "guile" ] + if [ "${PN}" = "guile" ] then sed -i -e s:${STAGING_DIR_TARGET}::g \ -e s:/${TARGET_SYS}::g \ @@ -71,7 +73,7 @@ SYSROOT_PREPROCESS_FUNCS = "guile_cross_config" guile_cross_config() { # this is only for target recipe - if [ "${PN}" == "guile" ] + if [ "${PN}" = "guile" ] then # Create guile-config returning target values instead of native values install -d ${SYSROOT_DESTDIR}${STAGING_BINDIR_CROSS} |