aboutsummaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authormalc <av1474@comtv.ru>2009-10-11 17:08:57 +0400
committermalc <av1474@comtv.ru>2009-10-11 17:08:57 +0400
commit02d5467e9f43dac05f04999e387108ca4c8ba140 (patch)
tree049c331848f09f68ffffd77ee83ec9d07d411322 /configure
parent868dc0b4ad0911a3db923bc61c6963089506f37c (diff)
Move dependency generation falgs out of configure
Signed-off-by: malc <av1474@comtv.ru>
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure5
1 files changed, 2 insertions, 3 deletions
diff --git a/configure b/configure
index 35cf6cc83..5b0a6874b 100755
--- a/configure
+++ b/configure
@@ -14,9 +14,8 @@ fi
TMPC="${TMPDIR1}/qemu-conf-${RANDOM}-$$-${RANDOM}.c"
TMPO="${TMPDIR1}/qemu-conf-${RANDOM}-$$-${RANDOM}.o"
TMPE="${TMPDIR1}/qemu-conf-${RANDOM}-$$-${RANDOM}"
-TMPD="${TMPDIR1}/qemu-conf-${RANDOM}-$$-${RANDOM}.d"
-trap "rm -f $TMPC $TMPO $TMPE $TMPD ; exit" 0 2 3 15
+trap "rm -f $TMPC $TMPO $TMPE ; exit" 0 2 3 15
compile_object() {
$cc $QEMU_CFLAGS -c -o $TMPO $TMPC > /dev/null 2> /dev/null
@@ -1692,7 +1691,7 @@ QEMU_CFLAGS="-Wall -Wundef -Wendif-labels -Wwrite-strings -Wmissing-prototypes $
QEMU_CFLAGS="-Wstrict-prototypes -Wredundant-decls $QEMU_CFLAGS"
QEMU_CFLAGS="-D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE $QEMU_CFLAGS"
QEMU_CFLAGS="-U_FORTIFY_SOURCE $QEMU_CFLAGS"
-QEMU_CFLAGS="-I. -I\$(SRC_PATH) -MMD -MP -MT \$@ $QEMU_CFLAGS"
+QEMU_CFLAGS="-I. -I\$(SRC_PATH) $QEMU_CFLAGS"
LDFLAGS="-g $LDFLAGS"
gcc_flags="-Wold-style-declaration -Wold-style-definition"