From 2b525db8a29080b650f57647a8839ee0b5c959f6 Mon Sep 17 00:00:00 2001 From: Alexandre Julliard Date: Thu, 31 Mar 2016 14:34:46 +0900 Subject: [PATCH] winegcc: Support building from the top directory. Signed-off-by: Alexandre Julliard --- tools/winegcc/winegcc.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/tools/winegcc/winegcc.c b/tools/winegcc/winegcc.c index 1ddafc61bfb..119e12bf88f 100644 --- a/tools/winegcc/winegcc.c +++ b/tools/winegcc/winegcc.c @@ -1464,6 +1464,11 @@ int main(int argc, char **argv) /* don't pass it to the compiler, this generates warnings */ raw_compiler_arg = raw_linker_arg = 0; } + else if (!strcmp(str, "tools/winebuild")) + { + opts.wine_objdir = "."; + raw_compiler_arg = raw_linker_arg = 0; + } if (!opts.prefix) opts.prefix = strarray_alloc(); strarray_add(opts.prefix, str); break;