Get rid of the libqemustub.a remainders
authorThomas Huth <thuth@redhat.com>
Mon, 3 Aug 2020 19:14:57 +0000 (21:14 +0200)
committerThomas Huth <thuth@redhat.com>
Wed, 5 Aug 2020 09:45:43 +0000 (11:45 +0200)
libqemustub.a has been removed in commit ebedb37c8d ("Makefile: Remove
libqemustub.a"). Some remainders have been missed. Remove them now.

Message-Id: <20200804170055.2851-8-thuth@redhat.com>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Signed-off-by: Thomas Huth <thuth@redhat.com>
Makefile
scripts/coverity-scan/run-coverity-scan
tests/test-util-sockets.c

index c2120d8d48df08c7ce6e8daf5685cf7c8f08aae5..13dd708c4af52df3bc932812fc60008809191927 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -726,7 +726,7 @@ virtiofsd$(EXESUF): $(virtiofsd-obj-y) libvhost-user.a $(COMMON_LDADDS)
        $(call LINK, $^)
 endif
 
-vhost-user-gpu$(EXESUF): $(vhost-user-gpu-obj-y) $(libvhost-user-obj-y) libqemuutil.a libqemustub.a
+vhost-user-gpu$(EXESUF): $(vhost-user-gpu-obj-y) $(libvhost-user-obj-y) libqemuutil.a
        $(call LINK, $^)
 
 ifdef CONFIG_VHOST_USER_INPUT
index 03a791dec9968b1439dcaade4b8db22b65ef7ce9..6eefb4b558d4fa7b148e530ec1b8259ff6f1c892 100755 (executable)
@@ -403,9 +403,6 @@ echo "Configuring..."
     --enable-mpath --enable-libxml2 --enable-glusterfs \
     --enable-virtfs --enable-zstd
 
-echo "Making libqemustub.a..."
-make libqemustub.a
-
 echo "Running cov-build..."
 rm -rf cov-int
 mkdir cov-int
index 2ca1e99f176201b87128f150194d6e9d641ddfdb..261dc48c032b2621b4fa9560f86d02aea210f92f 100644 (file)
@@ -64,7 +64,8 @@ int monitor_get_fd(Monitor *mon, const char *fdname, Error **errp)
     return dup(mon_fd);
 }
 
-/* Syms in libqemustub.a are discarded at .o file granularity.
+/*
+ * Syms of stubs in libqemuutil.a are discarded at .o file granularity.
  * To replace monitor_get_fd() we must ensure everything in
  * stubs/monitor.c is defined, to make sure monitor.o is discarded
  * otherwise we get duplicate syms at link time.