Tweak Timeline<->Mixer discovery handshake.
[nondaw.git] / scripts / build_id
blob1c0fc71d04e7906783b618272fc55700a9aaf4d1
1 #!/bin/sh
3 # Copyright (C) 2008 Jonathan Moore Liles #
4 # #
5 # This program is free software; you can redistribute it and/or modify it #
6 # under the terms of the GNU General Public License as published by the #
7 # Free Software Foundation; either version 2 of the License, or (at your #
8 # option) any later version. #
9 # #
10 # This program is distributed in the hope that it will be useful, but WITHOUT #
11 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or #
12 # FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for #
13 # more details. #
14 # #
15 # You should have received a copy of the GNU General Public License along #
16 # with This program; see the file COPYING. If not,write to the Free Software #
17 # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. #
19 if [ "$#" = 0 ]
20 then
21 echo "Usage: $0 [output_file.h] [version]"
24 if [ -d ../.git ]
25 then
26 ID=`git log -1 --format=%h -- .`
27 # ID="`[ \`git rev-parse HEAD\` = \`git rev-parse v${2}\` ] || git rev-parse --short HEAD`"
28 if [ -n "$ID" ]
29 then
30 ID="git {$ID}"
31 else
32 ID="git"
34 else
35 ID="dist"
38 echo "/* generated file */" > "$1"
39 echo "const char *BUILD_ID = \"${ID}\";" >> "$1"
40 echo "const char *VERSION = \"${2}\";" >> "$1"