summaryrefslogtreecommitdiffstats
path: root/lib/libarchive/Makefile
diff options
context:
space:
mode:
authorkientzle <kientzle@FreeBSD.org>2006-11-26 19:09:42 +0000
committerkientzle <kientzle@FreeBSD.org>2006-11-26 19:09:42 +0000
commit5b41e3aa03765586c88560666ab5908c8314869e (patch)
tree1c9307b44664fd1fd67fae164b219a0cc25196a9 /lib/libarchive/Makefile
parent15f017fe4d7096aac7a105f8253e1cfad3d6187e (diff)
downloadFreeBSD-src-5b41e3aa03765586c88560666ab5908c8314869e.zip
FreeBSD-src-5b41e3aa03765586c88560666ab5908c8314869e.tar.gz
Bump the libarchive version number, correct the shell hackery to break
the full version down into major/minor values.
Diffstat (limited to 'lib/libarchive/Makefile')
-rw-r--r--lib/libarchive/Makefile11
1 files changed, 6 insertions, 5 deletions
diff --git a/lib/libarchive/Makefile b/lib/libarchive/Makefile
index ac67026..3a5651c 100644
--- a/lib/libarchive/Makefile
+++ b/lib/libarchive/Makefile
@@ -6,12 +6,13 @@ LDADD= -lbz2 -lz
# The libarchive version stamp.
# Version is three numbers:
-# Major: Bumped ONLY when API/ABI breakage happens.
-# Minor: Bumped when significant new features are added (see SHLIB_MAJOR)
+# Major: Bumped ONLY when API/ABI breakage happens (see SHLIB_MAJOR)
+# Minor: Bumped when significant new features are added
# Revision: Bumped on any notable change
-VERSION= 1.2.53
-ARCHIVE_API_MAJOR!= echo ${VERSION} | sed -e 's/\..*//'
-ARCHIVE_API_MINOR!= echo ${VERSION} | sed -e 's/[0-9]*\.//' | sed -e 's/\..*//'
+VERSION= 1.3.1
+
+ARCHIVE_API_MAJOR!= echo ${VERSION} | sed -e 's/[^0-9]/./g' -e 's/\..*//'
+ARCHIVE_API_MINOR!= echo ${VERSION} | sed -e 's/[^0-9]/./g' -e 's/[0-9]*\.//' -e 's/\..*//'
# FreeBSD SHLIB_MAJOR value is managed as part of the FreeBSD system.
# It has no real relation to the version number above.
OpenPOWER on IntegriCloud