New commits:
commit dc7182b7c7f01b557ca7836216553e534262393f
Author: Thomas Orgis <sobukus AT sourcemage.org>
Commit: Thomas Orgis <sobukus AT sourcemage.org>
qemu: hotfix for not overwriting qemu-system-${ARCH}
diff --git a/utils/qemu/DETAILS b/utils/qemu/DETAILS
index 33a72c7..fe83d34 100755
--- a/utils/qemu/DETAILS
+++ b/utils/qemu/DETAILS
@@ -13,6 +13,7 @@ SOURCE_DIRECTORY="$BUILD_DIRECTORY/$SPELL-${VERSION%-*}"
WEB_SITE=http://qemu.org/
KEYWORDS="emulator utils"
ENTERED=20051102
+ PATCHLEVEL=1
SHORT="generic and open source processor emulator"
cat << EOF
QEMU achieves a good emulation speed by using dynamic translation.
diff --git a/utils/qemu/HISTORY b/utils/qemu/HISTORY
index 984675d..7c7199d 100644
--- a/utils/qemu/HISTORY
+++ b/utils/qemu/HISTORY
@@ -1,3 +1,9 @@
+2017-05-19 Thomas Orgis <sobukus AT sourcemage.org>
+ * INSTALL: Do not replace an existing qemu-system-${ARCH} with the
+ symlink, just in case it was built and I would like to run a VM,
+ for a change.
+ * DETAILS: patchlevel for the above
+
2017-04-04 Eric Sandall <sandalle AT sourcemage.org>
* DETAILS: Updated to 2.8.1
* INSTALL: Some packages (libguestfs) depend on the
qemu-system-${ARCH} file
diff --git a/utils/qemu/INSTALL b/utils/qemu/INSTALL
index cf8b390..d106705 100755
--- a/utils/qemu/INSTALL
+++ b/utils/qemu/INSTALL
@@ -8,8 +8,13 @@ if [[ "${QEMU_KVM}" != "--disable-kvm" ]]; then
fi &&
# Some packages (libguestfs) depend on the qemu-system-${ARCH} file
- ln -sf /usr/bin/qemu-${ARCH} \
- "${INSTALL_ROOT}"/usr/bin/qemu-system-${ARCH} &&
+ # But for sure overwriting qemu-system-${ARCH} with a link to the
+ # userspace emulator is a very bad idea?! Putting this check in here
+ # until someone explains that whole thing to me. --sobukus
+ if ! test -e "${INSTALL_ROOT}"/usr/bin/qemu-system-${ARCH}; then
+ ln -sf /usr/bin/qemu-${ARCH} \
+ "${INSTALL_ROOT}"/usr/bin/qemu-system-${ARCH}
+ fi &&