diff options
author | Pau Espin Pedrol <pespin@sysmocom.de> | 2019-08-06 17:58:22 +0200 |
---|---|---|
committer | Pau Espin Pedrol <pespin@sysmocom.de> | 2019-08-06 17:58:28 +0200 |
commit | 2c281297094265cbcc383cb70e833e1f155061ad (patch) | |
tree | f1316f8b219f98508de7c69164b92a27051ff218 /src | |
parent | afce89dac1a3cdb975da72020acdba16940fd679 (diff) |
osmo-release.sh: Drop whitespace after = when parsing LIBVERSION
As a result whitespace ended up in some variables and then command
"expr" was not happy about it.
It was spotted because src/coding/Makefile.am had some whitespacing.
Since it's the only one, let's drop the whitespace there too to have
similar line in all Makefile.am files.
Change-Id: I33afef5e4ef9eb36de81274533f46598ba9a0edb
Diffstat (limited to 'src')
-rw-r--r-- | src/coding/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/coding/Makefile.am b/src/coding/Makefile.am index c001c139..f47fe457 100644 --- a/src/coding/Makefile.am +++ b/src/coding/Makefile.am @@ -1,7 +1,7 @@ # This is _NOT_ the library release version, it's an API version. # Please read Chapter 6 "Library interface versions" of the libtool # documentation before making any modification -LIBVERSION = 1:1:1 +LIBVERSION=1:1:1 AM_CPPFLAGS = \ -I"$(top_srcdir)/include" \ |