From cf22e0264f99742d94f54df44cefd7344a9efdce Mon Sep 17 00:00:00 2001 From: Alexandre Julliard Date: Sat, 8 Oct 2005 10:36:50 +0000 Subject: [PATCH] Set the winepath version to be the same as the global package version. --- programs/winepath/winepath.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/programs/winepath/winepath.c b/programs/winepath/winepath.c index a5df4055567..149c39be708 100644 --- a/programs/winepath/winepath.c +++ b/programs/winepath/winepath.c @@ -27,8 +27,6 @@ #include "wine/debug.h" -#define VERSION "0.1 (" PACKAGE_STRING ")" - enum { SHORTFORMAT = 1, LONGFORMAT = 2, @@ -63,7 +61,7 @@ static int option(int shortopt, const WCHAR *longopt) printf(helpmsg); exit(0); case 'v': - printf("%s version " VERSION "\n", progname); + printf("%s version " PACKAGE_VERSION "\n", progname); exit(0); case 'l': return LONGFORMAT;