diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-11-08 17:57:41 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-11-10 11:51:18 +0000 |
commit | c96e4990feb2eb0f15fa186fe82072a1baf47387 (patch) | |
tree | 5524184b150d5f0eb7b6105f56c6d4b3fd813f5b /meta/classes/image-prelink.bbclass | |
parent | a3b987a2f72bf9406bef577523399b845b7ee970 (diff) | |
download | poky-c96e4990feb2eb0f15fa186fe82072a1baf47387.tar.gz |
classes: Remove various bashisms
(From OE-Core rev: a057adfbb72454e28294f00075a69e0e7c699bec)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/image-prelink.bbclass')
-rw-r--r-- | meta/classes/image-prelink.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/image-prelink.bbclass b/meta/classes/image-prelink.bbclass index 350c29d424..53ef47e4d4 100644 --- a/meta/classes/image-prelink.bbclass +++ b/meta/classes/image-prelink.bbclass | |||
@@ -24,7 +24,7 @@ prelink_image () { | |||
24 | ${STAGING_DIR_NATIVE}${sbindir_native}/prelink --root ${IMAGE_ROOTFS} -amR -N -c ${sysconfdir}/prelink.conf | 24 | ${STAGING_DIR_NATIVE}${sbindir_native}/prelink --root ${IMAGE_ROOTFS} -amR -N -c ${sysconfdir}/prelink.conf |
25 | 25 | ||
26 | # Remove the prelink.conf if we had to add it. | 26 | # Remove the prelink.conf if we had to add it. |
27 | if [ "$dummy_prelink_conf" == "true" ]; then | 27 | if [ "$dummy_prelink_conf" = "true" ]; then |
28 | rm -f ${IMAGE_ROOTFS}${sysconfdir}/prelink.conf | 28 | rm -f ${IMAGE_ROOTFS}${sysconfdir}/prelink.conf |
29 | fi | 29 | fi |
30 | 30 | ||