From a8d69d6e352c56bb48f49a3ae95a565b0e5c8437 Mon Sep 17 00:00:00 2001 From: Alexandre Julliard Date: Mon, 10 Oct 2005 18:07:34 +0000 Subject: [PATCH] Add current directory to default include path. --- tools/wrc/wrc.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tools/wrc/wrc.c b/tools/wrc/wrc.c index 78c40382458..394efb09633 100644 --- a/tools/wrc/wrc.c +++ b/tools/wrc/wrc.c @@ -245,6 +245,8 @@ int main(int argc,char *argv[]) wpp_add_cmdline_define("RC_INVOKED=1"); wpp_add_cmdline_define("__WIN32__=1"); wpp_add_cmdline_define("__FLAT__=1"); + /* Microsoft RC always searches current directory */ + wpp_add_include_path("."); /* First rebuild the commandline to put in destination */ /* Could be done through env[], but not all OS-es support it */