mirror of
https://github.com/berkeleydb/libdb.git
synced 2024-11-16 09:06:25 +00:00
26 lines
523 B
Text
26 lines
523 B
Text
|
#!/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.
|
||
|
END_OF_README
|
||
|
|
||
|
f=../README
|
||
|
cmp $t $f > /dev/null 2>&1 ||
|
||
|
(echo "Building $f" && rm -f $f && cp $t $f)
|