blob: 454c69a1627c415677bc260e54323185040aa46b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#!/bin/sh
# Script to create the BUILDNUMBER used by compile-resource. This script
# needs the script createBuildNumber.pl to be in the same directory.
{ perl ./createBuildNumber.pl \
src/lib/libvisio-build.stamp \
src/lib/libvisio-stream-build.stamp \
src/conv/raw/visio2raw-build.stamp \
src/conv/svg/visio2svg-build.stamp
#Success
exit 0
}
#unsucessful
exit 1
|