Skip to content

Commit 1d461c4

Browse files
author
Daniel Kroening
committed
version numbers are now followed by git tag
1 parent 8f93163 commit 1d461c4

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/cbmc/dist-linux

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ umask u=rwx,g=rx,o=rx
44
make
55
strip cbmc
66

7-
VERSION=`./cbmc --version`
7+
VERSION=`./cbmc --version | cut -d " " -f 1`
88
VERSION_FILE=`echo $VERSION | sed "y/./-/"`
99
BITS=`getconf LONG_BIT`
1010
# UNAME_M=`uname -m`

src/cbmc/dist-macos

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ make cbmc-mac-signed
88
(cd ../goto-cc; make goto-cc-mac-signed)
99
(cd ../goto-instrument; make goto-instrument-mac-signed)
1010

11-
VERSION=`./cbmc --version`
11+
VERSION=`./cbmc --version | cut -d " " -f 1`
1212
VERSION_FILE=`echo $VERSION | sed "y/./-/"`
1313
BITS=`getconf LONG_BIT`
1414

src/cbmc/dist-win

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
make
44
strip cbmc.exe
55

6-
VERSION=`./cbmc.exe --version`
6+
VERSION=`./cbmc.exe --version | cut -d " " -f 1`
77
VERSION_FILE=`echo $VERSION | sed "y/./-/"`
88

99
echo $VERSION_FILE

0 commit comments

Comments
 (0)