mirror of
git://git.musl-libc.org/musl
synced 2024-12-16 03:35:06 +00:00
179ab5a505
this is still experimental and subject to change. for git checkouts, an attempt is made to record the exact revision to aid in bug reports and debugging. no version information is recorded in the static libc.a or binaries it's linked into.
13 lines
209 B
Bash
13 lines
209 B
Bash
#!/bin/sh
|
|
|
|
if test -d .git ; then
|
|
if type git >/dev/null 2>&1 ; then
|
|
git describe --tags --match 'v[0-9]*' 2>/dev/null \
|
|
| sed -e 's/^v//' -e 's/-/-git-/'
|
|
else
|
|
sed 's/$/-git/' < VERSION
|
|
fi
|
|
else
|
|
cat VERSION
|
|
fi
|