updated notes, modified release script

release scripts modified to accept line conversion utility location on
the command line
This commit is contained in:
Alex
2012-12-25 22:43:02 -06:00
parent dc508732d5
commit 8147b94f12
4 changed files with 26 additions and 26 deletions

View File

@@ -35,12 +35,17 @@ esac
label=""
spec=""
lineEndConv=""
while [ "$1" != "" ] ;
do
if [ "$1" = "-l" ] ; then
shift
label=@$1
shift
elif [ "$1" = "-c" ] ; then
shift
lineEndConv=$1
shift
else
spec=$1
shift
@@ -56,6 +61,10 @@ else
reltag=""
fi
if [ "$lineEndConv" != "" ] ; then
lnendcvt="-c ${lineEndConv}"
fi
if [ $cygwin ] ; then
export PWD=`cygpath -w $POCO_BASE`
fi
@@ -75,5 +84,5 @@ release=$version$reltag
echo "Building release $release"
rm -rf releases/poco-$release.*
$POCO_BASE/release/script/mkrelease $release $relspec
$POCO_BASE/release/script/mkrelease $release $relspec $lnendcvt