From: Vadim Zeitlin <vadim@wxwidgets.org>
Date: Fri, 18 Dec 2009 14:46:58 +0000 (+0000)
Subject: Don't use "-I @" in ctags command line as cmd.exe handles '@' specially.
X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/dc09d665230c1208e443b195e91f91a5e0938a9e

Don't use "-I @" in ctags command line as cmd.exe handles '@' specially.

Just use the file path instead as '@' is used for the "response files" by
cmd.exe, at least under Windows 7.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@62924 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
---

diff --git a/misc/scripts/ctags.ignore b/misc/scripts/ctags.ignore
index 28a0b96c57..da20204026 100644
--- a/misc/scripts/ctags.ignore
+++ b/misc/scripts/ctags.ignore
@@ -1,3 +1,4 @@
+WXUNUSED+
 WXDLLEXPORT
 WXDLLIMPEXP_ADV
 WXDLLIMPEXP_DATA_ADV+
diff --git a/misc/scripts/makemswtags.bat b/misc/scripts/makemswtags.bat
index 0436d06f0f..6d56c7966a 100755
--- a/misc/scripts/makemswtags.bat
+++ b/misc/scripts/makemswtags.bat
@@ -1 +1 @@
-@ctags.exe --totals --language-force=c++ --c++-types=+p -I @misc/scripts/ctags.ignore include/wx/*.h include/wx/aui/*.h include/wx/msw/*.h include/wx/msw/ole/*.h include/wx/generic/private/*.h include/wx/generic/*.h include/wx/html/*.h include/wx/propgrid/*.h include/wx/protocol/*.h include/wx/richtext/*.h include/wx/xml/*.h include/wx/xrc/*.h src/aui/*.cpp src/common/*.cpp src/generic/*.cpp src/msw/*.cpp src/msw/ole/*.cpp src/html/*.cpp src/propgrid/*.cpp src/richtext/*.cpp src/xml/*.cpp src/xrc/*.cpp
+@ctags.exe --totals --language-force=c++ --c++-types=+p -I ./misc/scripts/ctags.ignore include/wx/*.h include/wx/aui/*.h include/wx/msw/*.h include/wx/msw/ole/*.h include/wx/generic/private/*.h include/wx/generic/*.h include/wx/html/*.h include/wx/propgrid/*.h include/wx/protocol/*.h include/wx/richtext/*.h include/wx/xml/*.h include/wx/xrc/*.h src/aui/*.cpp src/common/*.cpp src/generic/*.cpp src/msw/*.cpp src/msw/ole/*.cpp src/html/*.cpp src/propgrid/*.cpp src/richtext/*.cpp src/xml/*.cpp src/xrc/*.cpp