Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
L
libzmq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
libzmq
Commits
908b39bf
Commit
908b39bf
authored
Feb 07, 2011
by
Mikko Koppanen
Committed by
Martin Sustrik
Feb 07, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
m4_esyscmd_s doesnt seem to be portable across different systems
Signed-off-by:
Mikko Koppanen
<
mikko.koppanen@gmail.com
>
parent
c8e5be87
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
configure.in
configure.in
+1
-1
version.sh
version.sh
+1
-1
No files found.
configure.in
View file @
908b39bf
...
...
@@ -6,7 +6,7 @@ AC_PREREQ(2.61)
# the version.sh script. Hence, it should be updated there.
# The version in git should reflect the *next* version planned.
#
AC_INIT([zeromq],[m4_esyscmd
_s
([./version.sh])],[zeromq-dev@lists.zeromq.org])
AC_INIT([zeromq],[m4_esyscmd([./version.sh])],[zeromq-dev@lists.zeromq.org])
AC_CONFIG_AUX_DIR(config)
AC_CONFIG_MACRO_DIR(config)
...
...
version.sh
View file @
908b39bf
...
...
@@ -17,5 +17,5 @@ fi
MAJOR
=
`
echo
$MAJOR
|
awk
'{ print $3 }'
`
MINOR
=
`
echo
$MINOR
|
awk
'{ print $3 }'
`
PATCH
=
`
echo
$PATCH
|
awk
'{ print $3 }'
`
echo
$MAJOR
.
$MINOR
.
$PATCH
echo
$MAJOR
.
$MINOR
.
$PATCH
|
tr
-d
'\n'
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment