summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Larsson <alexl@redhat.com>2015-04-01 16:59:50 +0200
committerAlexander Larsson <alexl@redhat.com>2015-04-01 16:59:50 +0200
commit8e44c998adbf1546c45cf733c688fed74e8ddc89 (patch)
treec8ddba1280ebc1ab591506110fafeb7cc8ba59c0
parentb261b70d91d07e96f89907c7a505f530a6b1d899 (diff)
Copy instead of hardlinking the final image
This means we inherit the proper selinux label at build.gnome.org
-rwxr-xr-xfreedesktop-sdk-build-yocto2
1 files changed, 1 insertions, 1 deletions
diff --git a/freedesktop-sdk-build-yocto b/freedesktop-sdk-build-yocto
index 259422f..7ab230f 100755
--- a/freedesktop-sdk-build-yocto
+++ b/freedesktop-sdk-build-yocto
@@ -96,5 +96,5 @@ bitbake freedesktop-contents-{sdk,platform}
rc=$?; if [[ $rc != 0 ]]; then exit $rc; fi
for basetype in sdk platform; do
- ln -f ${workdir}/${architecture}/tmp-glibc/deploy/images/${MACHINE}/freedesktop-contents-${basetype}-${MACHINE}.tar.gz $IMAGEDIR/freedesktop-contents-${basetype}-${architecture}-${HASH}.tar.gz
+ cp -f ${workdir}/${architecture}/tmp-glibc/deploy/images/${MACHINE}/freedesktop-contents-${basetype}-${MACHINE}.tar.gz $IMAGEDIR/freedesktop-contents-${basetype}-${architecture}-${HASH}.tar.gz
done