diff options
author | Fam Zheng | 2017-09-07 10:35:52 +0200 |
---|---|---|
committer | Fam Zheng | 2017-09-22 04:20:34 +0200 |
commit | e2ad6f16a88031cb85c5409fb158e15dac966f80 (patch) | |
tree | 7322144dc29cae4d0c4427ea88fce35ba1861623 /configure | |
parent | vl: Don't include vde header (diff) | |
download | qemu-e2ad6f16a88031cb85c5409fb158e15dac966f80.tar.gz qemu-e2ad6f16a88031cb85c5409fb158e15dac966f80.tar.xz qemu-e2ad6f16a88031cb85c5409fb158e15dac966f80.zip |
buildsys: Move vde libs to per object
Signed-off-by: Fam Zheng <famz@redhat.com>
Message-Id: <20170907083552.17725-3-famz@redhat.com>
Reviewed-by: Jason Wang <jasowang@redhat.com>
Signed-off-by: Fam Zheng <famz@redhat.com>
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -2946,8 +2946,6 @@ int main(void) EOF if compile_prog "" "$vde_libs" ; then vde=yes - libs_softmmu="$vde_libs $libs_softmmu" - libs_tools="$vde_libs $libs_tools" else if test "$vde" = "yes" ; then feature_not_found "vde" "Install vde (Virtual Distributed Ethernet) devel" @@ -5499,6 +5497,7 @@ if test "$slirp" = "yes" ; then fi if test "$vde" = "yes" ; then echo "CONFIG_VDE=y" >> $config_host_mak + echo "VDE_LIBS=$vde_libs" >> $config_host_mak fi if test "$netmap" = "yes" ; then echo "CONFIG_NETMAP=y" >> $config_host_mak |