Skip to content

Commit

Permalink
m4_esyscmd_s doesnt seem to be portable across different systems
Browse files Browse the repository at this point in the history
Signed-off-by: Mikko Koppanen <[email protected]>
  • Loading branch information
testraymond authored and sustrik committed Feb 7, 2011
1 parent c8e5be8 commit 908b39b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion configure.in
Original file line number Diff line number Diff line change
Expand Up @@ -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])],[[email protected]])
AC_INIT([zeromq],[m4_esyscmd([./version.sh])],[[email protected]])

AC_CONFIG_AUX_DIR(config)
AC_CONFIG_MACRO_DIR(config)
Expand Down
2 changes: 1 addition & 1 deletion version.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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'

0 comments on commit 908b39b

Please sign in to comment.