From 0bc850239067b205ffefab25d0f24af12416651f Mon Sep 17 00:00:00 2001 From: Alexandre Julliard Date: Mon, 22 Nov 2004 19:48:10 +0000 Subject: [PATCH] Pass DLLFLAGS to winebuild too. --- tools/winegcc/winegcc.c | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/winegcc/winegcc.c b/tools/winegcc/winegcc.c index e3bc22ecd4f..40f749f33e6 100644 --- a/tools/winegcc/winegcc.c +++ b/tools/winegcc/winegcc.c @@ -493,6 +493,7 @@ static void build(struct options* opts) strarray_add(spec_args, winebuild); strarray_add(spec_args, "--ld-cmd"); strarray_add(spec_args, LD); + strarray_addall(spec_args, strarray_fromstring(DLLFLAGS, " ")); strarray_add(spec_args, "-o"); strarray_add(spec_args, spec_c_name); if (opts->shared)