summaryrefslogtreecommitdiff
path: root/Build/source/extra/xz/build-aux/version.sh
diff options
context:
space:
mode:
Diffstat (limited to 'Build/source/extra/xz/build-aux/version.sh')
-rw-r--r--Build/source/extra/xz/build-aux/version.sh24
1 files changed, 0 insertions, 24 deletions
diff --git a/Build/source/extra/xz/build-aux/version.sh b/Build/source/extra/xz/build-aux/version.sh
deleted file mode 100644
index 40d04936288..00000000000
--- a/Build/source/extra/xz/build-aux/version.sh
+++ /dev/null
@@ -1,24 +0,0 @@
-#!/bin/sh
-#
-#############################################################################
-#
-# Get the version string from version.h and print it out without
-# trailing newline. This makes it suitable for use in configure.ac.
-#
-#############################################################################
-#
-# Author: Lasse Collin
-#
-# This file has been put into the public domain.
-# You can do whatever you want with this file.
-#
-#############################################################################
-
-sed -n 's/LZMA_VERSION_STABILITY_ALPHA/alpha/
- s/LZMA_VERSION_STABILITY_BETA/beta/
- s/LZMA_VERSION_STABILITY_STABLE//
- s/^#define LZMA_VERSION_[MPS][AIT][AJNT][A-Z]* //p' \
- src/liblzma/api/lzma/version.h \
- | tr '\n' '|' \
- | sed 's/|/./; s/|/./; s/|//g' \
- | tr -d '\n'