[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[gnunet] branch master updated: -fix
From: |
gnunet |
Subject: |
[gnunet] branch master updated: -fix |
Date: |
Sun, 01 Oct 2023 14:16:27 +0200 |
This is an automated email from the git hooks/post-receive script.
martin-schanzenbach pushed a commit to branch master
in repository gnunet.
The following commit(s) were added to refs/heads/master by this push:
new 4e2a0780e -fix
4e2a0780e is described below
commit 4e2a0780eac2fd8309b7cc6865ee544b5519be90
Author: Martin Schanzenbach <schanzen@gnunet.org>
AuthorDate: Sun Oct 1 14:16:23 2023 +0200
-fix
---
meson.build | 4 ++--
src/pq/meson.build | 2 +-
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/meson.build b/meson.build
index 10e5a5fc6..fe250f8a8 100644
--- a/meson.build
+++ b/meson.build
@@ -9,8 +9,8 @@ incdir = include_directories('src/include')
cdata = configuration_data()
# Version
-r = run_command('sh', 'contrib/get_version.sh', check: true)
-cdata.set('gnunet_version', r.stdout().strip())
+gnunet_version = run_command('sh', 'contrib/get_version.sh', check:
true).stdout().strip()
+cdata.set('gnunet_version', gnunet_version)
r = run_command('sh', 'contrib/get_version.sh', '--major', check: true)
cdata.set('gnunet_major_version', r.stdout().strip())
r = run_command('sh', 'contrib/get_version.sh', '--minor', check: true)
diff --git a/src/pq/meson.build b/src/pq/meson.build
index 75d19795f..b9b20d93c 100644
--- a/src/pq/meson.build
+++ b/src/pq/meson.build
@@ -15,9 +15,9 @@ if get_option('monolith')
endif
libgnunetpq = library('gnunetpq',
+ libgnunetpq_src,
soversion: '4',
version: '4.0.0',
- libgnunetpq_src,
dependencies: [libgnunetutil_dep, pq_dep],
include_directories: [incdir, configuration_inc],
install: true,
--
To stop receiving notification emails like this one, please contact
gnunet@gnunet.org.
- [gnunet] branch master updated: -fix,
gnunet <=