summaryrefslogtreecommitdiff
path: root/dist/s_readme
blob: f4b7f0480b64ac133772808710d837c408a6aaa1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#!/bin/sh -
#	$Id$
#
# Build the README.

echo 'Updating Berkeley DB README file...'

d=..

t=/tmp/__t
trap 'rm -f $t; exit 0' 0 1 2 3 13 15

. ./RELEASE

cat << END_OF_README>$t
$DB_VERSION_FULL_STRING

This is Berkeley DB $DB_VERSION_FAMILY$DB_VERSION_LETTER Release $DB_VERSION_RELEASE from Oracle.  To view release and
installation documentation, load the distribution file docs/index.html
into your web browser.  Technical support can be obtained by visiting 
the Berkeley DB Oracle Technical Network (OTN) forum, here:

https://forums.oracle.com/forums/forum.jspa?forumID=271

END_OF_README

f=../README
cmp $t $f > /dev/null 2>&1 ||
    (echo "Building $f" && rm -f $f && cp $t $f)