summaryrefslogtreecommitdiffstats
path: root/save-git.c
diff options
context:
space:
mode:
authorGravatar Lubomir I. Ivanov <neolit123@gmail.com>2015-02-15 20:25:18 +0200
committerGravatar Dirk Hohndel <dirk@hohndel.org>2015-02-15 13:26:51 -0800
commitc45768a09ffcc6393912b74ed3661b5a110041e8 (patch)
treee0f322e344a337abd4d9aa40e85e21a58c65af5e /save-git.c
parentf6dbed1fc6c71251e1937cb1b63e96ff7a8251c3 (diff)
downloadsubsurface-c45768a09ffcc6393912b74ed3661b5a110041e8.tar.gz
add and use a version.c / version.h pair
version.c is now object code which is recompiled each time ssrf-version.h changes, while the interface file version.h remains that same at all times and files which include it will not need to be recompiled. Signed-off-by: Lubomir I. Ivanov <neolit123@gmail.com> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'save-git.c')
-rw-r--r--save-git.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/save-git.c b/save-git.c
index 0aef48f0b..0125f64d7 100644
--- a/save-git.c
+++ b/save-git.c
@@ -13,7 +13,7 @@
#include "dive.h"
#include "device.h"
#include "membuffer.h"
-#include "ssrf-version.h"
+#include "version.h"
/*
* handle libgit2 revision 0.20 and earlier
@@ -990,7 +990,7 @@ static void create_commit_message(struct membuffer *msg)
} while ((dc = dc->next) != NULL);
put_format(msg, "\n");
}
- put_format(msg, "Created by subsurface %s\n", VERSION_STRING);
+ put_format(msg, "Created by subsurface %s\n", subsurface_version());
}
static int create_new_commit(git_repository *repo, const char *branch, git_oid *tree_id)