summaryrefslogtreecommitdiffstatshomepage
path: root/3rdparty/portaudio/clear_svnrevision.sh
blob: 250163087d704e6a32bc6907920332ba98209f88 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/bash
#
# Clear the SVN revision in the include file.
# This should be run before checking in code to SVN.
#
revision_filename=src/common/pa_svnrevision.h

# Update the include file with the current SVN revision.
echo "#define PA_SVN_REVISION unknown" > ${revision_filename}

echo ${revision_filename} now contains
cat ${revision_filename}