projects
/
wine
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
Implement conversions between dates and strings.
[wine]
/
programs
/
winetest
/
maketest
1
#!/bin/sh
2
3
if [ -z "$WINE_BUILD" ]; then
4
WINE_BUILD="`date`"
5
echo "warning: using automatically generated BUILD tag: $WINE_BUILD" 1>&2
6
fi
7
8
echo "/* Automatically generated -- do not edit! */"
9
echo "STRINGTABLE {"
10
echo "0 \"$WINE_BUILD\""
11
12
i=0
13
for test
14
do
15
i=$(($i+1))
16
echo "$i \"$test\""
17
done
18
echo "}"
19
20
i=0
21
for test
22
do
23
i=$(($i+1))
24
echo "$i USERDATA \"$test\""
25
done