summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCyrill Gorcunov <gorcunov@gmail.com>2014-11-29 21:33:44 +0300
committerCyrill Gorcunov <gorcunov@gmail.com>2014-11-29 21:49:38 +0300
commit0dd37af2105784da65f4fac9e46b0f9b1a7d54d6 (patch)
treec5a2fbab675216af400fa757273c33b4baa945ea
parentb2c344978897b840d95ea65af047305e468e6074 (diff)
downloadnasm-0dd37af2105784da65f4fac9e46b0f9b1a7d54d6.tar.gz
nasm: Fix -MD operating mode
Previously -MD option didn't call for depend mode solely but produced deps during active compilation phase allowing symbol refereces processing as well. Occasionally in commit 599a98 I made -MD option to handle deps in a separate internal phase which caused problems like | error: symbol references not supported in preprocess-only mode leading to problems in building applications with nasm. Fix it moving old behaviour back. Signed-off-by: Cyrill Gorcunov <gorcunov@gmail.com>
-rw-r--r--nasm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/nasm.c b/nasm.c
index ac46afd4..37b40b00 100644
--- a/nasm.c
+++ b/nasm.c
@@ -898,7 +898,7 @@ set_warning:
depend_emit_phony = true;
break;
case 'D':
- operating_mode = OP_DEPEND | OP_NORMAL;
+ operating_mode = OP_NORMAL;
depend_file = q;
advance = true;
break;