From 54df2afaa61c6a03cbb4a33c9b90fa572b6d07b8 Mon Sep 17 00:00:00 2001 From: Jesse Morgan Date: Sat, 17 Dec 2016 21:28:53 -0800 Subject: Berkeley DB 4.8 with rust build script for linux. --- db-4.8.30/dist/s_readme | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100755 db-4.8.30/dist/s_readme (limited to 'db-4.8.30/dist/s_readme') diff --git a/db-4.8.30/dist/s_readme b/db-4.8.30/dist/s_readme new file mode 100755 index 0000000..6a52efa --- /dev/null +++ b/db-4.8.30/dist/s_readme @@ -0,0 +1,25 @@ +#!/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_STRING + +This is version $DB_VERSION_MAJOR.$DB_VERSION_MINOR.$DB_VERSION_PATCH of Berkeley DB 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 && chmod 444 $f) -- cgit v1.2.3