summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEd Maste2013-05-22 15:21:39 +0200
committerMichael Tokarev2013-06-01 12:25:38 +0200
commitcbc8d595ef21635b630dd1cad54eb730ae6620a1 (patch)
tree395803b5a6e036defe6a6e9bf6a28c1098a69294
parentdebugcon: fix compiler warning when open DEBUG_DEBUGCON (diff)
downloadqemu-cbc8d595ef21635b630dd1cad54eb730ae6620a1.tar.gz
qemu-cbc8d595ef21635b630dd1cad54eb730ae6620a1.tar.xz
qemu-cbc8d595ef21635b630dd1cad54eb730ae6620a1.zip
configure: remove confusing file manipulation
The configure script had some code to manipulate config-host.ld~ (i.e., a common backup filename), comparing it with the newly-generated file. I believe the sense of the comparison was backwards. Since it seemed to serve little purpose anyway, remove it to avoid any confusion. Signed-off-by: Ed Maste <emaste@freebsd.org> Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
-rwxr-xr-xconfigure9
1 files changed, 0 insertions, 9 deletions
diff --git a/configure b/configure
index 269382a398..e17281ea6b 100755
--- a/configure
+++ b/configure
@@ -4104,17 +4104,8 @@ if test "$gcov" = "yes" ; then
fi
# generate list of library paths for linker script
-
$ld --verbose -v 2> /dev/null | grep SEARCH_DIR > ${config_host_ld}
-if test -f ${config_host_ld}~ ; then
- if cmp -s $config_host_ld ${config_host_ld}~ ; then
- mv ${config_host_ld}~ $config_host_ld
- else
- rm ${config_host_ld}~
- fi
-fi
-
# use included Linux headers
if test "$linux" = "yes" ; then
mkdir -p linux-headers