mirror of
https://github.com/RsyncProject/rsync.git
synced 2026-03-28 11:13:39 -04:00
12 lines
216 B
Bash
Executable File
12 lines
216 B
Bash
Executable File
#!/bin/sh
|
|
|
|
srcdir=`dirname $0`
|
|
gitver=`git describe --abbrev=8 2>/dev/null`
|
|
|
|
if test x"$gitver" != x; then
|
|
gitver=\""$gitver"\"
|
|
else
|
|
gitver=RSYNC_VERSION
|
|
fi
|
|
echo "#define RSYNC_GITVER $gitver" >git-version.h
|