From: Daniel P. Berrange Date: Fri, 31 Jul 2015 12:23:23 +0000 (+0100) Subject: configure: only add CONFIG_RDMA to config-host.h once X-Git-Tag: v2.5.0-rc0~181^2~5 X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=416471916542f30c49f2ed2187d634e9ad26d57d;p=users%2Fdwmw2%2Fqemu.git configure: only add CONFIG_RDMA to config-host.h once For unknown reasons (probably a git rebase merge mistake) commit 2da776db4846eadcb808598a5d3484d149773c05 Author: Michael R. Hines Date: Mon Jul 22 10:01:54 2013 -0400 rdma: core logic Adds CONFIG_RDMA to config-host.h twice, as can be seen in the generated file: $ grep CONFIG_RDMA config-host.h #define CONFIG_RDMA 1 #define CONFIG_RDMA 1 Signed-off-by: Daniel P. Berrange Message-Id: <1438345403-32467-1-git-send-email-berrange@redhat.com> Signed-off-by: Paolo Bonzini --- diff --git a/configure b/configure index 704b34c5aa..aace4897df 100755 --- a/configure +++ b/configure @@ -5601,10 +5601,6 @@ if [ "$pixman" = "internal" ]; then echo "config-host.h: subdir-pixman" >> $config_host_mak fi -if test "$rdma" = "yes" ; then -echo "CONFIG_RDMA=y" >> $config_host_mak -fi - if [ "$dtc_internal" = "yes" ]; then echo "config-host.h: subdir-dtc" >> $config_host_mak fi