From 98c5b751b14211647938e811dcaccea47c6ad9e3 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Rapha=C3=ABl=20Beamonte?= Date: Tue, 3 Jun 2014 14:30:09 -0400 Subject: [PATCH] Fix: remove the default GIT_VERSION MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit This is to allow different version control other than git. Tested-by: Alexandre Montplaisir Signed-off-by: Raphaël Beamonte Signed-off-by: David Goulet --- include/version.h.tmpl | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/include/version.h.tmpl b/include/version.h.tmpl index 639e6d7c1..2cab733a8 100644 --- a/include/version.h.tmpl +++ b/include/version.h.tmpl @@ -20,15 +20,13 @@ #ifndef VERSION_H #define VERSION_H -#define GIT_VERSION - /* * Define the macro containing the FULL version */ #ifdef GIT_VERSION #define FULL_VERSION "" GIT_VERSION #else /* GIT_VERSION */ -#define FULL_VERSION "v" VERSION +#define FULL_VERSION "" VERSION #endif /* GIT_VERSION */ #endif /* VERSION_H */ -- 2.34.1