diff options
author | John Klug <john.klug@multitech.com> | 2023-03-22 18:07:18 -0500 |
---|---|---|
committer | John Klug <john.klug@multitech.com> | 2023-03-22 18:07:18 -0500 |
commit | 881ecd4383a0af7fc12caa7b35b8e5fb50409d29 (patch) | |
tree | 2523a65db1416d2f02eadeff927d16967d4a3fd2 /recipes-core | |
parent | f8e5eb466b8aff68696e0f89d5e5fa4ba1e195c9 (diff) | |
download | meta-mlinux-881ecd4383a0af7fc12caa7b35b8e5fb50409d29.tar.gz meta-mlinux-881ecd4383a0af7fc12caa7b35b8e5fb50409d29.tar.bz2 meta-mlinux-881ecd4383a0af7fc12caa7b35b8e5fb50409d29.zip |
Fix image build when using coreutils-date
Diffstat (limited to 'recipes-core')
-rw-r--r-- | recipes-core/coreutils/coreutils_%.bbappend | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/recipes-core/coreutils/coreutils_%.bbappend b/recipes-core/coreutils/coreutils_%.bbappend index aa2132e..6256ceb 100644 --- a/recipes-core/coreutils/coreutils_%.bbappend +++ b/recipes-core/coreutils/coreutils_%.bbappend @@ -13,4 +13,8 @@ python do_package_append() { os.mkdir(todir,mode=0o755) os.rename(fromf,tof) # mv ${PKGDEST}/${PN}/${base_bindir}/date.coreutils ${PKGDEST}/${PN}-date/${base_bindir}/date + workdir = d.getVar("WORKDIR",True) + rdir = workdir + "/pkgdata/runtime-reverse" + + os.symlink("../runtime/coreutils-date",rdir + "/coreutils-date") } |