mirror of
git://git.code.sf.net/p/openocd/code
synced 2025-07-18 08:42:05 +10:00
causing PKGBLDREV macro to not work git-svn-id: svn://svn.berlios.de/openocd/trunk@398 b42882b7-edfa-0310-969c-e2dbd0fdcd60
9 lines
98 B
Bash
Executable File
9 lines
98 B
Bash
Executable File
#!/bin/bash
|
|
|
|
REV=unknown
|
|
|
|
which svnversion > /dev/null 2>&1 && REV=`svnversion -n`
|
|
|
|
echo -n $REV
|
|
|