diff options
author | Matthias Schiffer <mschiffer@universe-factory.net> | 2015-11-28 19:15:17 +0100 |
---|---|---|
committer | Matthias Schiffer <mschiffer@universe-factory.net> | 2015-11-28 19:16:01 +0100 |
commit | 3a8cf86a60a78da66cd17c9670b961bf9fa11aa4 (patch) | |
tree | 2d841d8364f5cc8fadc75617a219fdc6d4f1b1c8 /recipes-core/busybox | |
parent | 6bdc2c4521091a73686ca6043c28d7d5a95d5abe (diff) | |
download | meta-gluon-3a8cf86a60a78da66cd17c9670b961bf9fa11aa4.tar meta-gluon-3a8cf86a60a78da66cd17c9670b961bf9fa11aa4.zip |
Minor merged-usr updates
Diffstat (limited to 'recipes-core/busybox')
-rw-r--r-- | recipes-core/busybox/busybox_%.bbappend | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/recipes-core/busybox/busybox_%.bbappend b/recipes-core/busybox/busybox_%.bbappend index 3c3d7f0..87a275d 100644 --- a/recipes-core/busybox/busybox_%.bbappend +++ b/recipes-core/busybox/busybox_%.bbappend @@ -146,11 +146,8 @@ pkg_postinst_${PN} () { if test ! -e "$link"; then # we can use busybox here because even if we are using splitted busybox # we've made a symlink from /bin/busybox to /bin/busybox.nosuid. - # The sed expression will fail if ${base_bindir}, ${base_sbindir}, ${bindir} or - # ${sbindir} contains . or .., so don't do that! - to="$(echo -n "$link" | busybox sed -r -e 's@^/[^/]+/@@' -e 's@[^/]+@..@g')${base_bindir}/busybox$suffix" busybox rm -f $link - busybox ln -s $to $link + busybox ln -s "${base_bindir}/busybox$suffix" $link fi done < /etc/busybox.links$suffix fi |