The build process currently produces this ugly message:
$ make
cat: version: No such file or directory
GIT_VERSION = 1.1.GIT
cat: version: No such file or directory
This patch make GIT-VERSION-GEN check that a file named `version' exists
before trying to cat it.
Signed-off-by: Amos Waterland <redacted>
---
GIT-VERSION-GEN | 4 +++-
1 files changed, 3 insertions(+), 1 deletions(-)
applies-to: 2b022b9b34b375afff456e7527a3d89a56ce8abf
eff0a8f6c905b3112538f30fb5a9ce09d4e18e72
diff --git a/GIT-VERSION-GEN b/GIT-VERSION-GEN
index 72201be..fbaa397 100755
--- a/GIT-VERSION-GEN
+++ b/GIT-VERSION-GEN
@@ -7,8 +7,10 @@ DEF_VER=v1.1.GIT
# (included in release tarballs), then default
if VN=$(git-describe --abbrev=4 HEAD 2>/dev/null); then
VN=$(echo "$VN" | sed -e 's/-/./g');
+elif test -f version; then
+ VN=$(cat version);
else
- VN=$(cat version) || VN="$DEF_VER"
+ VN="$DEF_VER";
fi
VN=$(expr "$VN" : v*'\(.*\)')
---
0.99.9.GIT