qemu: remove redundant copy of qemu-ga

There's no reason to have one copy of qemu-ga in $out and another in
$ga, and because we only applied remove-references-to to one of the
copies, it caused a collision when QEMU was used in a buildEnv.
This commit is contained in:
Alyssa Ross 2022-04-09 17:29:04 +00:00 committed by Peter Hoeg
parent 797fdd3859
commit 665bb90fc3

View file

@ -234,9 +234,10 @@ stdenv.mkDerivation rec {
# the .desktop is both invalid and pointless
rm -f $out/share/applications/qemu.desktop
# copy qemu-ga (guest agent) to separate output
# move qemu-ga (guest agent) to separate output
mkdir -p $ga/bin
cp $out/bin/qemu-ga $ga/bin/
mv $out/bin/qemu-ga $ga/bin/
ln -s $ga/bin/qemu-ga $out/bin
remove-references-to -t $out $ga/bin/qemu-ga
'' + lib.optionalString gtkSupport ''
# wrap GTK Binaries