X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=build%2Fmkrelease;h=ee866c850d39d242debd28101466afc38a74ce56;hb=2f84c5e20e087cb3b37a6fb05aadbe1eeedccbf9;hp=b435026088d4708b51f2fcdb748a7431888e147f;hpb=ac5ecaf8e0578cf097eb919e6f15f7247e49cc3e;p=openldap diff --git a/build/mkrelease b/build/mkrelease index b435026088..ee866c850d 100755 --- a/build/mkrelease +++ b/build/mkrelease @@ -1,14 +1,28 @@ #! /bin/sh # $OpenLDAP$ -## Copyright 1998-2000 The OpenLDAP Foundation -## COPYING RESTRICTIONS APPLY. See COPYRIGHT File in top level directory -## of this package for details. +## This work is part of OpenLDAP Software . +## +## Copyright 1998-2004 The OpenLDAP Foundation. +## All rights reserved. +## +## Redistribution and use in source and binary forms, with or without +## modification, are permitted only as authorized by the OpenLDAP +## Public License. +## +## A copy of this license is available in the file LICENSE in the +## top-level directory of the distribution or, alternatively, at +## . # # Make a release # mkrelease RELNAME CVSTAG CVSMODULES # where CVSTAG is the tag to export from the current CVSROOT # +# +# This script MUST NOT add files to the export nor modify +# any file in the export. +# + set -e # exit immediately if any errors occur if test $# != 3 ; then @@ -42,7 +56,7 @@ if test ! -e $RELNAME/build/version.sh ; then exit 1 fi -$RELNAME/build/version.sh +eval `$RELNAME/build/version.sh` tar cf $RELNAME.tar $RELNAME gzip -9 -c $RELNAME.tar > $RELNAME.tgz @@ -50,4 +64,5 @@ md5 $RELNAME.tgz > $RELNAME.md5 rm -f $RELNAME.tar ls -l $RELNAME.* -cat $RELNAME/build/version + +echo "Made $OL_STRING as $RELNAME.tgz"