diff options
author | cvs2svn <cvs2svn@FreeBSD.org> | 2005-04-20 06:16:18 +0000 |
---|---|---|
committer | cvs2svn <cvs2svn@FreeBSD.org> | 2005-04-20 06:16:18 +0000 |
commit | 8673c7ec800a8bcc6da14c506081a3cb76e2b8ea (patch) | |
tree | ad3f495c08f0cc331b6958d319f699d021175c19 /emulators/wine-devel/files/patch-tools | |
parent | Fix plist problems. (diff) |
This commit was manufactured by cvs2svn to create tag 'RELEASE_5_4_0'.release/5.4.0
Diffstat (limited to 'emulators/wine-devel/files/patch-tools')
-rw-r--r-- | emulators/wine-devel/files/patch-tools | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/emulators/wine-devel/files/patch-tools b/emulators/wine-devel/files/patch-tools deleted file mode 100644 index a6d6085cc0ac..000000000000 --- a/emulators/wine-devel/files/patch-tools +++ /dev/null @@ -1,27 +0,0 @@ -Index: tools/makedep.c -=================================================================== -RCS file: /home/wine/wine/tools/makedep.c,v -retrieving revision 1.17 -diff -u -3 -p -r1.17 makedep.c ---- makedep.c 20 Jun 2003 21:31:13 -0000 1.17 -+++ makedep.c 23 Feb 2004 22:36:23 -0000 -@@ -67,7 +67,8 @@ static const char Usage[] = - " -Idir Search for include files in directory 'dir'\n" - " -Cdir Search for source files in directory 'dir'\n" - " -fxxx Store output in file 'xxx' (default: Makefile)\n" -- " -sxxx Use 'xxx' as separator (default: \"### Dependencies\")\n"; -+ " -sxxx Use 'xxx' as separator (default: \"### Dependencies\")\n" -+ " -Dxxx This is a no-op, to work around bugs in other tools\n"; - - - /******************************************************************* -@@ -503,6 +504,9 @@ static void parse_option( const char *op - case 'C': - if (opt[2]) SrcDir = opt + 2; - else SrcDir = NULL; -+ break; -+ case 'D': -+ /* Simply ignore -D... options. */ - break; - case 'f': - if (opt[2]) OutputFileName = opt + 2; |