aboutsummaryrefslogtreecommitdiffhomepage
path: root/build_tools/xcode_version_gen.sh
blob: 5bc26145438a15b2dc1978a33e6b365a2833f036 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/bin/bash
# Expects to be called from Xcode (Run Script build phase),
# write version number C preprocessor macro to header file.

tmp="$SCRIPT_OUTPUT_FILE_1"
ver="$SCRIPT_OUTPUT_FILE_0"

./build_tools/git_version_gen.sh

cat FISH-BUILD-VERSION-FILE | awk '{printf("#define %s \"%s\"\n",$1,$3)}' > "$tmp"

cmp --quiet "$tmp" "$ver"
if [ $? -ne 0 ]; then
    /bin/mv "$tmp" "$ver"
else
    /bin/rm "$tmp"
fi