Add BSD license file
[platform/upstream/db4.git] / dist / s_readme
1 #!/bin/sh -
2 #       $Id$
3 #
4 # Build the README.
5
6 echo 'Updating Berkeley DB README file...'
7
8 d=..
9
10 t=/tmp/__t
11 trap 'rm -f $t; exit 0' 0 1 2 3 13 15
12
13 . RELEASE
14
15 cat << END_OF_README>$t
16 $DB_VERSION_STRING
17
18 This is version $DB_VERSION_MAJOR.$DB_VERSION_MINOR.$DB_VERSION_PATCH of Berkeley DB from Oracle.  To view release and
19 installation documentation, load the distribution file docs/index.html
20 into your web browser.
21 END_OF_README
22
23 f=../README
24 cmp $t $f > /dev/null 2>&1 ||
25     (echo "Building $f" && rm -f $f && cp $t $f && chmod 444 $f)