From c182e3a23138d9a02f0c5a021d258b4bb032f511 Mon Sep 17 00:00:00 2001 From: Alan Cox Date: Sat, 3 Jan 2015 00:12:30 +0000 Subject: [PATCH] fcc: fix bug introduced with multiple -c support --- Library/tools/fcc.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Library/tools/fcc.c b/Library/tools/fcc.c index 351007e9..4e516a3c 100644 --- a/Library/tools/fcc.c +++ b/Library/tools/fcc.c @@ -451,7 +451,10 @@ int main(int argc, const char *argv[]) { srchead = srchead->next; argp = 0; } - } + } else { + build_command(); + ret = do_command(); + } if (mode != MODE_LINK || ret) exit(ret); argp = 0; -- 2.34.1