From 9ca1138c10babe902ce14b5db8006739277ab4ea Mon Sep 17 00:00:00 2001 From: "mozilla%weilbacher.org" Date: Fri, 14 Jul 2006 20:05:21 +0000 Subject: [PATCH] [OS/2] Bug 325902: make xpt_link expand wildcards, p=abwillis, r=mkaply --- xpcom/typelib/xpt/tools/xpt_link.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/xpcom/typelib/xpt/tools/xpt_link.c b/xpcom/typelib/xpt/tools/xpt_link.c index 0f40da824a2..9bbf63a0d9f 100644 --- a/xpcom/typelib/xpt/tools/xpt_link.c +++ b/xpcom/typelib/xpt/tools/xpt_link.c @@ -123,6 +123,10 @@ static size_t get_file_length(const char* filename) int main(int argc, char **argv) { + #ifdef XP_OS2 /* Shell does not expand wildcards on OS/2, doesn't work with OW */ + _wildcard (&argc, &argv); + #endif + XPTArena *arena; XPTState *state; XPTCursor curs, *cursor = &curs;