[[ -z "$GVF" ]] && exit 0
if [[ -r "$GVF" ]]; then
- VC=$(sed -e 's/^#define GIT_VERSION "//; s/"$//' < "$GVF")
+ pattern='^#define GIT_VERSION "'
+ VC=$(grep "$pattern" < "$GVF" | sed -e "s/$pattern//; s/\"$//")
[[ "$VN" == "$VC" ]] && exit 0
fi
echo >&2 "new git version: $VN"
-echo "#define GIT_VERSION \"$VN\"" >$GVF
+echo "/** \\file ${GVF##*/} Auto-generated version file. Do not edit. */" >$GVF
+echo "#define GIT_VERSION \"$VN\"" >> $GVF
+/** \file version.h Macros for printing the version string. */
+
#include "git-version.h"
-/** Version text used by various commands if -V switch was given. */
+
+/** Version text printed by all executables if -V was given. */
#define VERSION_TEXT(prefix) "para_" prefix " " PACKAGE_VERSION \
" (" GIT_VERSION ": " CODENAME ")" "\n" \
"Copyright (C) 2011 Andre Noll\n" \
"This is free software with ABSOLUTELY NO WARRANTY." \
" See COPYING for details.\n" \
- "Written by Andre Noll.\n" \
"Report bugs to <maan@systemlinux.org>.\n"
/** Print out \p VERSION_TEXT and exit if version flag was given. */